using System; using System.Collections.Generic; namespace djy.Model.AFRDto { /// /// 请求电子口岸接口时,用于 原始发送、修改发送、重新发送 的Dto类 /// public class AFRRequestDto { public MasterBillInfo masterBillInfo { get; set; } public List houseBillInfoList { get; set; } } public class MasterBillInfo { /// /// 船东提单号 /// public string masterBillNo { get; set; } /// /// 船东单运编号(选填) /// public string shippingNo { get; set; } /// /// 运输条款代码 /// public string clause { get; set; } /// /// 整箱/拼箱 FCL:整箱 LCL:拼箱 /// public string consignmentType { get; set; } /// /// 卸货港全称 /// public string dischargeHarbour { get; set; } /// /// 卸货港五字码 /// public string dischargeHarbourCode { get; set; } /// /// 预计到达日期 /// public DateTime? estimatedArrivalTime { get; set; } /// /// 申报运输类型 /// public string filingType { get; set; } /// /// 交货地全称(条件)申报运输类型Tranship时,必填 /// public string lastForeignHarbour { get; set; } /// /// 交货地五字码(条件)申报运输类型Tranship时,必填 /// public string lastForeignHarbourCode { get; set; } /// /// 预计开船日期 /// public DateTime? loadDate { get; set; } /// /// 装货港全称 /// public string loadHarbour { get; set; } /// /// 装货港五字码 /// public string loadHarbourCode { get; set; } /// /// 船司MapName /// public string shipCompany { get; set; } /// /// /// public string vessel { get; set; } /// /// /// public string voyage { get; set; } /// /// 发送方DEA CARGOEDI账号,联系运营人员配置 /// public string requesterDea { get; set; } } public class HouseBillInfo { /// /// 货代提单号唯一编号 同货代提单号,原始修改删除重发报文,该值要一致 /// public string businessId { get; set; } /// /// 货代单运编号(选填) /// public string shippingNo { get; set; } /// /// 货代提单号 修改报文,该值不可以变更 /// public string houseBillNo { get; set; } /// /// 通知人地址 /// public string notifyAddress { get; set; } /// /// 通知人城市 /// public string notifyCity { get; set; } /// /// 通知人联系人 /// public string notifyContact { get; set; } /// /// 通知人国家 /// public string notifyCountry { get; set; } /// /// 通知人国家代码 /// public string notifyCountryCode { get; set; } /// /// 通知人名称 /// public string notifyName { get; set; } /// /// 通知人联系人电话 /// public string notifyTel { get; set; } /// /// 收货人地址 /// public string receiveAddress { get; set; } /// /// 收货人城市 /// public string receiveCity { get; set; } /// /// 收货人联系人 /// public string receiveContact { get; set; } /// /// 收货人国家 /// public string receiveCountry { get; set; } /// /// 收货人国家代码 /// public string receiveCountryCode { get; set; } /// /// 收货人名称 /// public string receiveName { get; set; } /// /// 收货人联系人电话 /// public string receiveTel { get; set; } /// /// 发货人地址 /// public string sendAddress { get; set; } /// /// 发货人城市 /// public string sendCity { get; set; } /// /// 发货人联系人 /// public string sendContact { get; set; } /// /// 发货人国家 /// public string sendCountry { get; set; } /// /// 发货人国家代码 /// public string sendCountryCode { get; set; } /// /// 发货人名称 /// public string sendName { get; set; } /// /// 发货人联系人电话 /// public string sendTel { get; set; } //public List ctnInfo { get; set; } public CtnInfo ctnInfo { get; set; } } public class CtnInfo { public List insertList { get; set; } } public class InsertList { /// /// 货主箱标志 /// public string containerMark { get; set; } /// /// 箱号 /// public string containerNo { get; set; } /// /// 箱型 /// public string containerType { get; set; } /// /// 危品联系人(选填) /// public string dangerContact { get; set; } /// /// 危品联系人电话(选填) /// public string dangerContactTel { get; set; } /// /// 危品等级(条件必填) /// public string dangerGrade { get; set; } /// /// 危品备注(选填) /// public string dangerMemo { get; set; } /// /// 件数 /// public string digit { get; set; } /// /// 品名 /// public string enProductName { get; set; } /// /// 毛重 /// public string grossWeight { get; set; } /// /// HSCode /// public string hscode { get; set; } /// /// 燃点,摄氏度(选填) /// public string ignite { get; set; } /// /// 原产国(选填) /// public string originCountry { get; set; } /// /// 原产国国家代码(选填) /// public string originCountryCode { get; set; } /// /// 包装 /// public string packing { get; set; } /// /// 包装代码 /// public string packingCode { get; set; } /// /// 封号 /// public string sealNo { get; set; } /// /// 唛头 /// public string shippingMark { get; set; } /// /// UN CODE(条件必填) /// public string unCode { get; set; } /// /// 体积 /// public string volume { get; set; } } }