using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace djy.Model.AmsDto { public class masterBillInfo { public string masterBillNo { get; set; } public string shippingNo { get; set; } public string shipCompany { get; set; } public string vessel { get; set; } public string voyage { get; set; } public string requesterDea { get; set; } public string consignmentType { get; set; } public string loadHarbour { get; set; } public string loadHarbourCode { get; set; } public string dischargeHarbour { get; set; } public string dischargeHarbourCode { get; set; } public string lastForeignHarbour { get; set; } public string lastForeignHarbourCode { get; set; } public string loadDate { get; set; } public string estimatedArrivalTime { get; set; } public string filingType { get; set; } } public class InsertListItem { /// /// /// public string enProductName { get; set; } /// /// /// public string containerNo { get; set; } /// /// /// public string containerType { get; set; } public string containerMark { get; set; } /// /// /// public string sealNo { get; set; } /// /// /// public string digit { get; set; } /// /// /// public string grossWeight { get; set; } /// /// /// public string volume { get; set; } /// /// /// public string packing { get; set; } /// /// /// public string packingCode { get; set; } /// /// /// public string shippingMark { get; set; } public string secondSealNo { get; set; } public string originCountry { get; set; } public string originCountryCode { get; set; } /// /// /// public string unCode { get; set; } /// /// /// public string dangerGrade { get; set; } public string dangerContact { get; set; } public string dangerContactTel { get; set; } public string dangerMemo { get; set; } public string ignite { get; set; } } public class CtnInfo { /// /// /// public List insertList { get; set; } } public class HouseBillInfoListItem { /// /// /// public string businessId { get; set; } /// /// /// public string houseBillNo { get; set; } public string shippingNo { get; set; } /// /// /// public string sendAddress { get; set; } /// /// /// public string sendName { get; set; } /// /// /// public string sendCity { get; set; } /// /// /// public string sendCountry { get; set; } /// /// /// public string sendCountryCode { get; set; } /// /// /// public string receiveAddress { get; set; } /// /// /// public string receiveName { get; set; } /// /// /// public string receiveCity { get; set; } /// /// /// public string receiveCountry { get; set; } /// /// /// public string receiveCountryCode { get; set; } /// /// /// public string notifyAddress { get; set; } /// /// /// public string notifyName { get; set; } /// /// /// public string notifyCity { get; set; } /// /// /// public string notifyCountry { get; set; } /// /// /// public string notifyCountryCode { get; set; } /// /// /// public CtnInfo ctnInfo { get; set; } } public class MasterBillInfoDto { public masterBillInfo masterBillInfo { get; set; } public List houseBillInfoList { get; set; } } }