生产任务排产,新增 任务 下发、开始、关闭、完成 接口

This commit is contained in:
DEVICE8\12494
2023-05-08 17:01:51 +08:00
parent 40bca59440
commit d4702c1fd5
5 changed files with 105 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";