using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class TaskPODDischargeGateoutFullDto { /// /// 主键 /// public string PKId { get; set; } /// /// 任务主键 /// public string TaskId { get; set; } /// /// 主单号 /// public string MBlNo { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 箱号 /// public string CtnNo { get; set; } /// /// 收货人 /// public string CNee { get; set; } /// /// 卸货日期 /// public Nullable DischargeDate { get; set; } /// /// 卸货港 /// public string DischargePort { get; set; } /// /// 超期天数 /// public Nullable OverdueDays { get; set; } /// /// 通知接收时间 /// public Nullable NoticeDate { get; set; } /// /// 订舱ID /// public Nullable BookingId { get; set; } /// /// 已发消息提醒 1-已发 0-未发 /// public bool IsNotice { get; set; } /// /// 消息提醒时间 /// public Nullable SendNoticeDate { get; set; } /// /// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱 /// public string NoticeType { get; set; } /// /// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱 /// public string NoticeTypeName { get; set; } /// /// 当前集装箱所在地 /// public string CurContaLocation { get; set; } /// /// 滞留费用 /// public Nullable DetentionFeeTillDate { get; set; } /// /// 费用币别 /// public string ChargeCurrency { get; set; } } }