using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 海运出口提单信息返回 /// public class SeaExportBillManageRes { /// /// 主键Id /// public long Id { get; set; } /// /// 业务编号 /// public string BSNO { get; set; } /// /// 主提单号 /// public string MBLNO { get; set; } /// /// 分提单号 /// public string HBLNO { get; set; } /// /// 模板Id /// public long TemplateId { get; set; } /// /// 提单类型 /// public string BillType { get; set; } /// /// 发货人 t_info_client CUSTNAME /// public long? ShipperId { get; set; } /// /// 发货人内容 /// public string ShipperContent { get; set; } /// /// 发货人企业代码 /// public string ShipperCode { get; set; } /// /// 发货人国家代码 /// public string ShipperCountry { get; set; } /// /// 发货人电话 /// public string ShipperTel { get; set; } /// /// 发货人邮箱 /// public string ShipperEmail { get; set; } /// /// 收货人 t_info_client CUSTNAME /// public long? ConsigneeId { get; set; } /// /// 收货人内容 /// public string ConsigneeContent { get; set; } /// /// 收货企业代码 /// public string ConsigneeCode { get; set; } /// /// 收货人国家代码 /// public string ConsigneeCountry { get; set; } /// /// 收货人电话 /// public string ConsigneeTel { get; set; } /// /// 收货人邮箱 /// public string ConsigneeEmail { get; set; } /// /// 通知人 t_info_client CUSTNAME /// public long? NotifyPartyId { get; set; } /// /// 通知人内容 /// public string NotifyPartyContent { get; set; } /// /// 通知企业代码 /// public string NotifyPartyCode { get; set; } /// /// 通知人国家代码 /// public string NotifyPartyCountry { get; set; } /// /// 通知人电话 /// public string NotifyPartyTel { get; set; } /// /// 通知人邮箱 /// public string NotifyPartyEmail { get; set; } /// /// 代理人 t_info_client CUSTNAME /// public long? AgentId { get; set; } /// /// 代理人内容 /// public string AgentContent { get; set; } /// /// 第二通知人 t_info_client CUSTNAME /// public long? SecondNotifyPartyId { get; set; } /// /// 第二通知人内容 /// public string SecondNotifyPartyContent { get; set; } /// /// 第二通知人企业代码 /// public string SecondNotifyPartyCode { get; set; } /// /// 第二通知人国家代码 /// public string SecondNotifyPartyCountry { get; set; } /// /// 第二通知人电话 /// public string SecondNotifyPartyTel { get; set; } /// /// 第二通知人邮箱 /// public string SecondNotifyPartyEmail { get; set; } /// /// 场站 t_crm_client CUSTNAME /// public string Yard { get; set; } /// /// 船名 t_code_vessel /// public string Vessel { get; set; } /// /// 船名Id t_code_vessel /// public long VesselId { get; set; } /// /// 航次 /// public string Voyno { get; set; } /// /// 开船日期 /// public DateTime? ETD { get; set; } /// /// 预抵日期 /// public DateTime? ETA { get; set; } /// /// ATD /// public DateTime? ATD { get; set; } /// /// 截港日期 /// public DateTime? ClosingDate { get; set; } /// /// 收货地点Id /// public long ReceiptPlaceId { get; set; } /// /// 收货地点 /// public string ReceiptPlace { get; set; } /// /// 装货港代码 /// public long LoadPortId { get; set; } /// /// 装货港 /// public string LoadPort { get; set; } /// /// 卸货港代码 /// public long DischargePortId { get; set; } /// /// 卸货港 /// public string DischargePort { get; set; } /// /// 交货地代码 /// public long DeliveryPlaceId { get; set; } /// /// 交货地 /// public string DeliveryPlace { get; set; } /// /// 目的地代码 /// public long DestinationId { get; set; } /// /// 目的地 /// public string Destination { get; set; } /// /// 提单份数 /// public string NoBill { get; set; } /// /// 副本份数 /// public string CopyNoBill { get; set; } /// /// 签单方式 t_code_issutype /// public string IssueType { get; set; } /// /// 签单日期 /// public DateTime? IssueDate { get; set; } /// /// 签单地点Id /// public long IssuePlaceId { get; set; } /// /// 签单地点 /// public string IssuePlace { get; set; } /// /// 签单状态 /// public DateTime? BLIssueSatus { get; set; } /// /// 付款地点Id /// public long PrepareAtId { get; set; } /// /// 预付地点 /// public string PrepareAt { get; set; } /// /// 预付地点 /// public string PayableAt { get; set; } /// /// 运输条款 CY-CY t_code_service /// public string Service { get; set; } /// /// 唛头 N/M /// public string Marks { get; set; } /// /// 箱号封号 /// public string CntrSealNo { get; set; } /// /// 件数包装 /// public string NoPkgs { get; set; } /// /// 货物描述 /// public string Description { get; set; } /// /// 品名 t_code_goods /// public string GoodsName { get; set; } /// /// 货物毛重 /// public string GrossWeight { get; set; } /// /// 货物尺码 /// public string Measurement { get; set; } /// /// 件数 /// public int? PKGS { get; set; } /// /// 包装 t_code_package /// public string KindPkgs { get; set; } /// /// 毛重 /// public decimal? KGS { get; set; } /// /// 尺码 /// public decimal? CBM { get; set; } /// /// 件数大写 /// public string TotalNo { get; set; } /// /// 集装箱大写 /// public string CntrNo { get; set; } /// /// Desc:MBL付费方式 t_code_frt /// public string MBLFrt { get; set; } /// /// Desc:备注 /// public string Remark { get; set; } /// /// Desc:其他备注 /// public string OrderContent { get; set; } /// /// 备注 /// public string Note { get; set; } = ""; /// /// 创建时间 /// public DateTime CreateTime { get; set; } } }