using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { public class CautionNoticeTaskDto { /// /// WeekAt-计费周差异 PriceCalcDate-计费周差异 /// public CautionNoticeTaskEnum cautionNoticeType { get; set; } /// /// 订舱ID /// public Nullable bookingId { get; set; } /// /// 舱位ID /// public Nullable bookingSlotId { get; set; } /// /// 任务ID /// public string taskPKId { get; set; } /// /// 创建日期 /// public DateTime createTime { get; set; } /// /// 原值 /// public string origVal { get; set; } /// /// 新值 /// public string newVal { get; set; } /// /// 租户ID /// public long tenentId { get; set; } /// /// 租户名称 /// public string tenentName { get; set; } /// /// 用户ID /// public long userId { get; set; } /// /// 用户名称 /// public string userName { get; set; } /// /// 提单号 /// public string mblNo { get; set; } /// /// 通知内容 /// public string notifyContent { get; set; } /// /// 船公司 /// public string carrier { get; set; } /// /// 来源系统 /// public string sourceSystem { get; set; } /// /// 来源业务类型 /// public string sourceBusiType { get; set; } /// /// 来源业务类型名称 /// public string sourceBusiTypeName { get; set; } /// /// 船名 /// public string vessel { get; set; } /// /// 航次 /// public string voyno { get; set; } /// /// ETD /// public Nullable etd { get; set; } /// /// 委托客户ID /// public Nullable customerId { get; set; } /// /// 委托客户名称 /// public string customerName { get; set; } /// /// 通知人列表 /// public List notifyList { get; set; } } /// /// 通知人详情 /// public class CautionNoticeTaskNoitfyDto { /// /// 通知人ID /// public long notifyUserId { get; set; } /// /// 通知人名称 /// public string notifyUserName { get; set; } /// /// 通知方式 /// public CautionNoticeMethodEnum[] notifyMethod { get; set; } /// /// 通知人手机 /// public string notifyMobile { get; set; } /// /// 通知人邮箱 /// public string notifyEmail { get; set; } } }