using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务格式单
///
[SugarTable("task_draft_info", "任务格式单")]
public class TaskDraftInfo : BaseModelV2
{
///
/// 任务主键ID
///
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { get; set; }
///
/// 主单号
///
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
public string? MBL_NO { get; set; }
///
/// 订舱ID
///
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
public long? BOOKING_ID { get; set; }
///
/// 已发消息提醒 1-已发 0-未发
///
[SugarColumn(ColumnDescription = "已发消息提醒 1-已发 0-未发", IsNullable = true, Length = 1)]
public UInt64? IS_CHANGE { get; set; }
///
/// 消息提醒时间
///
[SugarColumn(ColumnDescription = "消息提醒时间", IsNullable = true, Length = 1)]
public UInt64? IS_EMAIL_SEND { get; set; }
///
/// 邮件推送时间
///
[SugarColumn(ColumnDescription = "邮件推送时间", IsNullable = true)]
public DateTime? SEND_EMAIL_DATE { get; set; }
///
/// 通知接收时间
///
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true)]
public DateTime? NOTICE_DATE { get; set; }
///
/// 船公司
///
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)]
public string? CARRIER { get; set; }
}
}