using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 任务BC详情
///
public class TaskManageOrderBCInfo
{
///
/// 订舱单位
///
public string BookingParty { get; set; }
///
/// 发货人
///
public string Shipper { get; set; }
///
/// 收货人
///
public string Consignee { get; set; }
///
/// 通知人
///
public string NotifyParty { get; set; }
///
/// BC更新次数
///
public Nullable BCModifyTimes { get; set; }
///
/// BC更新时间
///
public Nullable BCModifyDate { get; set; }
///
/// 主单号
///
public string MBLNo { get; set; }
///
/// 船名
///
public string Vessel { get; set; }
///
/// 航次
///
public string VoyNo { get; set; }
///
/// 船公司
///
public string Carrier { get; set; }
///
/// 收货地
///
public string PlaceReceipt { get; set; }
///
/// 装货港
///
public string Portload { get; set; }
///
/// 截关时间
///
public Nullable ClosingDate { get; set; }
///
/// 截VGM时间
///
public Nullable VGMCutoffTime { get; set; }
///
/// ETA(预计到港时间)
///
public Nullable ETA { get; set; }
///
/// ETD(预计离港时间)
///
public Nullable ETD { get; set; }
///
/// 目的港ETA
///
public Nullable PODETA { get; set; }
///
/// 截单时间
///
public Nullable CutSingleTime { get; set; }
///
/// 卸货港
///
public string PortDischarge { get; set; }
///
/// 交货地
///
public string PlaceDelivery { get; set; }
///
/// 装运方式
///
public string ShippingMethod { get; set; }
///
/// 运输条款
///
public string Service { get; set; }
///
/// 港前运输形态
///
public string PreTransMode { get; set; }
///
/// 品名
///
public string Description { get; set; }
///
/// 签单地点
///
public string IssuePlace { get; set; }
///
/// 集港码头
///
public string CollectionTerminal { get; set; }
///
/// 约号
///
public string ContractNo { get; set; }
///
/// 预付地点
///
public string PrepardAT { get; set; }
///
/// 船代
///
public string ShipAgent { get; set; }
///
/// 场站
///
public string Yard { get; set; }
///
/// 场站联系人
///
public string YardContactUserName { get; set; }
///
/// 场站联系电话
///
public string YardContactTel { get; set; }
///
/// 一代客服姓名
///
public string FstCustomerSerUserName { get; set; }
///
/// 一代客服电话
///
public string FstCustomerSerUserTel { get; set; }
///
/// 一代客服邮箱
///
public string FstCustomerSerUserEmail { get; set; }
///
/// 备注1
///
public string Remark1 { get; set; }
///
/// 截港时间
///
public Nullable CYCutoffTime { get; set; }
///
/// 状态 TEMP-暂存 SUCC-已对应 ERROR-异常
///
public string Status { get; set; }
///
/// 文件MD5
///
public string FileMD5 { get; set; }
///
/// 最后对应时间,最后关联到订舱日期
///
public Nullable LastToBookingDate { get; set; }
///
/// 来源邮箱
///
public string FromEmail { get; set; }
///
/// 接收邮箱
///
public string RecvEmail { get; set; }
}
}