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
2.0 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 : BaseModel<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
public long TaskId { get; set; }
/// <summary>
/// 主单号
/// </summary>
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
public string? MblNo { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
public long? BookingId { get; set; }
/// <summary>
/// 已发消息提醒 1-已发 0-未发
/// </summary>
[SugarColumn(ColumnDescription = "已发消息提醒 1-已发 0-未发", IsNullable = true , Length = 1 ) ]
public long? IsChange { get; set; }
/// <summary>
/// 消息提醒时间
/// </summary>
[SugarColumn(ColumnDescription = "消息提醒时间", IsNullable = true , Length = 1 ) ]
public long? IsEmailSend { get; set; }
/// <summary>
/// 邮件推送时间
/// </summary>
[SugarColumn(ColumnDescription = "邮件推送时间", IsNullable = true ) ]
public DateTime? SendEmailDate { get; set; }
/// <summary>
/// 通知接收时间
/// </summary>
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true ) ]
public DateTime? NoticeDate { get; set; }
/// <summary>
/// 船公司
/// </summary>
[SugarColumn(ColumnDescription = "船公司", IsNullable = true , Length = 50 ) ]
public string? Carrier { get; set; }
}
}