using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 船舶相关截止时间的通知
///
public class TaskRouteChangeAdvisoryShowDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 任务ID
///
public string TaskPKId { get; set; }
///
/// 船公司代码
///
public string CarrierId { get; set; }
///
/// 计费周
///
public int Week { get; set; }
///
/// 船名
///
public string Vessel { get; set; }
///
/// 航次
///
public string Voyno { get; set; }
///
/// 预计离港时间
///
public Nullable origETD { get; set; }
///
/// 完整 MDGF 截止时间/冻柜/开顶柜/框架箱/超限货物最晚提箱时间:
///
public Nullable MDGFCutDate { get; set; }
///
/// 预计到港
///
public Nullable ETA { get; set; }
///
/// 预计离港:
///
public Nullable ETD { get; set; }
///
/// 提单样本截止时间
///
public Nullable SICutDate { get; set; }
///
/// 码头移箱截止
///
public Nullable TerminalShiftCutDate { get; set; }
///
/// VGM截止时间
///
public Nullable VGMCutDate { get; set; }
///
/// 截港/场站收据截止
///
public Nullable CYCutDate { get; set; }
///
/// 读取装货港名称
///
public string LoadPortName { get; set; }
///
/// 装货港ID
///
public string LoadPortId { get; set; }
///
/// 装货港名称
///
public string LoadPort { get; set; }
///
/// 航线代码
///
public string RouteCode { get; set; }
///
/// 创建日期
///
public DateTime CreateTime { get; set; }
///
/// 通知标题
///
public string AdvisoryTitle { get; set; }
///
/// 同一航次订单数量
///
public int totalNum { get; set; }
///
/// 同一航次订单发送消息成功数量
///
public int totalSucc { get; set; }
///
/// 同一航次订单发送消息失败数量
///
public int totalFailure { get; set; }
///
/// 相关订舱列表
///
public List BuisList { get; set; }
}
///
/// 船舶相关截止时间的通知订单明细
///
public class TaskRouteChangeAdvisoryBusiShowDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 订舱订单ID
///
public long BookingId { get; set; }
///
/// 提单号
///
public string MBlNo { get; set; }
///
/// 是否已转发客户 true-是 false-否
///
public bool IsTransferUser { get; set; }
///
/// 最后转发客户邮件时间
///
public Nullable LstTransferUserDate { get; set; }
///
/// 最后转发客户邮件结果
///
public string LstTransferNote { get; set; }
///
/// 往来单位名称
///
public string CustomerName { get; set; }
///
/// 是否有效(true-可以点击发送 false-不能点击发送)
///
public bool IsEnable { get; set; }
}
}