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_caution_notice_whole_ship_detail")] [Description("重要任务提醒整船通知单号明细")] public class TaskCautionNoticeWholeShipDetailInfo : TaskManageDbEntity { /// /// 任务主键 /// public string TASK_ID { get; set; } /// /// 任务提醒主键 /// public string P_ID { get; set; } /// /// 提单号 /// public string MBL_NO { get; set; } /// /// 订舱ID /// public Nullable BOOKING_ID { get; set; } /// /// 舱位ID /// public Nullable BOOKING_SLOT_ID { get; set; } /// /// 通知人ID /// public string NOTIFY_USER_ID { get; set; } /// /// 被通知人名称 /// public string NOTIFY_USER_NAME { get; set; } /// /// 被通知方式 /// public string NOTIFY_METHOD { get; set; } /// /// 被通知人手机 /// public string NOTIFY_MOBILE { get; set; } /// /// 被通知人邮箱 /// public string NOTIFY_EMAIL { get; set; } /// /// 状态 /// public string STATUS { get; set; } /// /// 状态名称 /// public string STATUS_NAME { get; set; } /// /// 重试次数 /// public int RETRY_NUM { get; set; } /// /// 批次号 /// public string BATCH_NO { get; set; } } }