Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2023-05-08 17:42:16 +08:00
6 changed files with 128 additions and 10 deletions

View File

@@ -40,6 +40,18 @@ public static class DictConst
/// </summary>
public const string ToBeStartedEnCode = "ToBeStarted";
/// <summary>
/// 任务单状态-进行中
/// </summary>
public const string InProgressEnCode = "InProgress";
/// <summary>
/// 任务单状态-关闭编码
/// </summary>
public const string ClosedEnCode = "Closed";
/// <summary>
/// 任务单状态-完工编码
/// </summary>
public const string ComplatedEnCode = "Complated";
/// <summary>
/// 任务单状态-待排产
/// </summary>
public const string ToBeScheduledEncode = "ToBeScheduled";