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.

65 lines
1.9 KiB
C#

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