This commit is contained in:
FanLian
2023-08-02 10:21:38 +08:00
parent 9587a90987
commit 8e0e0c3ced
8 changed files with 259 additions and 19 deletions

View File

@@ -0,0 +1,18 @@
using Tnb.WarehouseMgr.Entities.Enums;
namespace Tnb.WarehouseMgr.Entities.Dto
{
public class TaskChainCallBackInput
{
/// <summary>
/// 任务链编号
/// </summary>
public string taskChainCode { get; set; }
/// <summary>
/// 状态
/// </summary>
public string status { get; set; }
}
}