using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 用来记录预甩的最终结果和发布给客户链接 /// [SugarTable("task_rolling_nomination_dispatch", "用来记录预甩的最终结果和发布给客户链接")] public class TaskRollingNominationDispatch : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_ID { get; set; } /// /// 父主键 /// [SugarColumn(ColumnDescription = "父主键", IsNullable = false)] public long NOM_ID { get; set; } /// /// 预甩船主键 /// [SugarColumn(ColumnDescription = "预甩船主键", IsNullable = false)] public long NOM_SHIP_ID { get; set; } /// /// 预甩明细主键 /// [SugarColumn(ColumnDescription = "预甩明细主键", IsNullable = false)] public long DETAIL_ID { get; set; } /// /// 批次ID /// [SugarColumn(ColumnDescription = "批次ID", IsNullable = true, Length = 64)] public string? BATCH_ID { get; set; } /// /// 是否用户人工确认 1-人工确认(用户在访问链接上做了反馈) 0-不是人工确认 /// [SugarColumn(ColumnDescription = "是否用户人工确认 1-人工确认(用户在访问链接上做了反馈) 0-不是人工确认", IsNullable = true, Length = 1)] public UInt64? IS_USER_MANUAL { get; set; } /// /// 是否已通知用户 1-已通知 0-未通知 /// [SugarColumn(ColumnDescription = "是否已通知用户 1-已通知 0-未通知", IsNullable = true, Length = 1)] public UInt64? IS_SEND { get; set; } /// /// 最后确认期限日期 /// [SugarColumn(ColumnDescription = "最后确认期限日期", IsNullable = true)] public DateTime? CONFIRM_DEAD_LINE { get; set; } /// /// 状态 WAIT-待确认,COMPLETE-已完成,CANCEL-已取消,EXPIRE-失效 /// [SugarColumn(ColumnDescription = "状态 WAIT-待确认,COMPLETE-已完成,CANCEL-已取消,EXPIRE-失效", IsNullable = true, Length = 20)] public string? STATUS { get; set; } /// /// 用户选择意见 /// [SugarColumn(ColumnDescription = "用户选择意见", IsNullable = true, Length = 50)] public string? USER_OPINION { get; set; } /// /// 用户意见内容 /// [SugarColumn(ColumnDescription = "用户意见内容", IsNullable = true, Length = 500)] public string? USER_OPINION_TXT { get; set; } /// /// 用户确认时间 /// [SugarColumn(ColumnDescription = "用户确认时间", IsNullable = true)] public DateTime? CONFIRM_DATE { get; set; } /// /// 生成链接时间 /// [SugarColumn(ColumnDescription = "生成链接时间", IsNullable = true)] public DateTime? CREATE_SHARE_LINK_DATE { get; set; } /// /// 生成链接访问KEY /// [SugarColumn(ColumnDescription = "生成链接访问KEY", IsNullable = true, Length = 64)] public string? SHARE_LINK_KEY { get; set; } } }