diff --git a/Myshipping.Application/Entity/TaskManagePlat/TaskPOLContainerNotPickUpInfo.cs b/Myshipping.Application/Entity/TaskManagePlat/TaskPOLContainerNotPickUpInfo.cs new file mode 100644 index 00000000..fefc2508 --- /dev/null +++ b/Myshipping.Application/Entity/TaskManagePlat/TaskPOLContainerNotPickUpInfo.cs @@ -0,0 +1,100 @@ +using Myshipping.Application.Entity; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Myshipping.Application +{ + /// + /// 装货港未提箱通知 + /// + [SugarTable("task_pol_container_not_pickup")] + [Description("装货港未提箱通知")] + public class TaskPOLContainerNotPickUpInfo : TaskManageDbEntity + { + /// + /// 任务主键 + /// + public string TASK_ID { get; set; } + + /// + /// 船名 + /// + public string VESSEL { get; set; } + + /// + /// 航次 + /// + public string VOYNO { get; set; } + + /// + /// 船公司 + /// + public string CARRIER { get; set; } + + /// + /// 主单号 + /// + public string MBL_NO { get; set; } + + /// + /// 订舱抬头 + /// + public string BOOKING_CUSTOMER { get; set; } + + /// + /// 订舱参考号 + /// + public string BOOKING_REFERENCE { get; set; } + + /// + /// 持约方抬头 + /// + public string PRICE_OWNER { get; set; } + + /// + /// 订舱ID + /// + public Nullable BOOKING_ID { get; set; } + + /// + /// 是否已转发客户 1-是 0-否 + /// + + public bool IS_TRANSFER_USER { get; set; } + + /// + /// 最后转发客户邮件时间 + /// + public Nullable LST_TRANSFER_USER_DATE { get; set; } + + /// + /// 最后转发客户邮件结果 + /// + public string LST_TRANSFER_NOTES { get; set; } + + /// + /// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败 + /// + public string LST_STATUS { get; set; } + + /// + /// 最后转发客户邮件状态名称 + /// + public string LST_STATUS_NAME { get; set; } + + /// + /// 列表批次号 + /// + public string GROUP_BATCH_NO { get; set; } + + /// + /// 是否列表最后项 1-是最后项 0-不是最后项 + /// + public bool IS_LAST { get; set; } + } +}