You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
3.6 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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