WMS 库房业务,生成任务,任务执行

This commit is contained in:
alex
2023-06-14 17:33:45 +08:00
parent edf3f135b1
commit 8ecae083b6
10 changed files with 303 additions and 31 deletions

View File

@@ -92,12 +92,12 @@ public partial class WmsDistaskH : BaseEntity<string>
/// <summary>
/// 预任务申请ID
/// </summary>
public string pertask_id { get; set; } = string.Empty;
public string pretask_id { get; set; } = string.Empty;
/// <summary>
/// 预任务申请单号
/// </summary>
public string pertask_code { get; set; } = string.Empty;
public string pretask_code { get; set; } = string.Empty;
/// <summary>
/// 是否签收
@@ -182,7 +182,7 @@ public partial class WmsDistaskH : BaseEntity<string>
/// <summary>
/// 协议内容
/// </summary>
public string agreement { get; set; } = string.Empty;
public string? agreement { get; set; }
/// <summary>
/// 扩展字段
@@ -194,4 +194,24 @@ public partial class WmsDistaskH : BaseEntity<string>
/// </summary>
public DateTime? timestamp { get; set; }
/// <summary>
/// 流程任务Id
/// </summary>
public string? f_flowtaskid { get; set; }
/// <summary>
/// 流程引擎Id
/// </summary>
public string? f_flowid { get; set; }
/// <summary>
/// 起始库位编号
/// </summary>
public string startlocation_code { get; set; } = string.Empty;
/// <summary>
/// 目标库位编号
/// </summary>
public string endlocation_code { get; set; } = string.Empty;
}