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

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

@@ -15,5 +15,14 @@ namespace Tnb.ProductionMgr.Entities.Dto
/// 生产任务ID列表
/// </summary>
public List<string> TaskIds { get; set; }
/// <summary>
/// 行为:
///<br/> Release(任务下发),
///<br/> Start(任务开始),
///<br/> Closed(任务关闭),
///<br/> Compled(任务完成)
/// </summary>
public string Behavior { get; set; }
}
}