using djy.Model.Ams;
using System;
using System.Collections.Generic;
namespace djy.Model.AmsDto
{
public class AMSDto
{
public AMSDto()
{
this.IsDel = false;
}
///
/// 主键
///
public string GID { get; set; }
///
/// 用户id
///
public string UserID { get; set; }
///
/// 用户
///
public string UserName { get; set; }
///
/// 公司id
///
public string CompID { get; set; }
///
/// 公司
///
public string CompName { get; set; }
///
/// 船公司id
///
public string CARRIERID { get; set; }
///
/// 船公司
///
public string CARRIER { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
///
/// 船名
///
public string VESSEL { get; set; }
///
/// 航次
///
public string VOYNO { get; set; }
///
/// 运输方式
///
public string ShippingType { get; set; }
///
/// 发货地
///
public string SHIPPERADDR { get; set; }
///
/// 装货港
///
public string LoadingPort { get; set; }
///
/// 最后一个非美港/中转港
///
public string LastNoUsPort { get; set; }
///
/// 卸货港
///
public string PORTDISCHARGE { get; set; }
///
/// 预计出发
///
public DateTime? ETA { get; set; }
///
/// 预计到达
///
public DateTime? ETD { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? LastUpdate { get; set; }
public bool IsDel { get; set; }=false;
///
/// 船东单运编号(选填)
///
public string ShippingNo { get; set; }
///
/// 整箱/拼箱 FCL:整箱 LCL:拼箱
///
public string ConsignmentType { get; set; }
///
/// 装货港code
///
public string LoadingPortCode { get; set; }
///
/// 卸货港code
///
public string PORTDISCHARGECode { get; set; }
///
/// 最后一个非美港/中转港Code
///
public string LastNoUsPortCode { get; set; }
public List HistoryDto { get; set; }
public List HouseDto { get; set; } = new List();
}
public class AMS_HouseDto {
public AMS_HouseDto()
{
this.IsDel = false;
}
///
/// 主键
///
public string GID { get; set; }
///
/// 父键
///
public string PID { get; set; }
///
/// 货代提单号
///
public string HBLNo { get; set; }
///
/// 发货人名称
///
public string SHIPPERNAME { get; set; }
///
/// 发货人地址
///
public string SHIPPERADDR { get; set; }
///
/// 发货人电话
///
public string SHIPPERTEL { get; set; }
///
/// 收货人名称
///
public string CONSIGNEEName { get; set; }
///
///收货人地址
///
public string CONSIGNEEDADDR { get; set; }
///
/// 收货人电话
///
public string CONSIGNEETEL { get; set; }
///
/// 通知人名称
///
public string NOTIFYPARTYNAME { get; set; }
///
///通知人地址
///
public string NOTIFYPARTYADDR { get; set; }
///
/// 通知人电话
///
public string NOTIFYPARTYTEL { get; set; }
public bool IsDel { get; set; } = false;
///
/// 发货人国家
///
public string SHIPPERCountry { get; set; }
///
/// 发货人国家code
///
public string SHIPPERCountryCode { get; set; }
///
/// 发货人城市
///
public string SHIPPERCity { get; set; }
///
/// 收货人国家
///
public string CONSIGNEECountry { get; set; }
///
/// 收货人国家code
///
public string CONSIGNEECountryCode { get; set; }
///
/// 收货人城市
///
public string CONSIGNEECity { get; set; }
///
/// 通知人国家
///
public string NOTIFYPARTYCountry { get; set; }
///
/// 通知人国家code
///
public string NOTIFYPARTYCountryCode { get; set; }
///
/// 通知人城市
///
public string NOTIFYPARTYCity { get; set; }
///
/// 申报状态
///
public string ReportState { get; set; }
///
/// 匹配状态
///
public string MateState { get; set; }
///
/// 最新通知
///
public string NewNotice { get; set; }
public List CntrnoDto { get; set; }
}
}