using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class TaskTruckPrintDto { /// /// 主键 /// public long Id { get; set; } /// /// 订舱ID /// public string BookingId { get; set; } /// /// 车队ID /// public string TruckId { get; set; } /// /// 车队代码 /// public string TruckCode { get; set; } /// /// 车队代码 /// public string TruckName { get; set; } /// /// TO /// public string ToName { get; set; } /// /// ATTN /// public string Attn { get; set; } /// /// ATTN电话 /// public string AttnTel { get; set; } /// /// ATTN邮箱 /// public string AttnMail { get; set; } /// /// ATTN传真 /// public string AttnFax { get; set; } /// /// FROM手机号 /// public string FromMobile { get; set; } /// /// FROM /// public string FromName { get; set; } /// /// FROM电话 /// public string FromTel { get; set; } /// /// FROM邮箱 /// public string FromMail { get; set; } /// /// FROM传真 /// public string FromFax { get; set; } /// /// 吨数 /// public Nullable KGS { get; set; } /// /// 陆运费 /// public Nullable Fee { get; set; } /// /// 支付方式 /// public string PayMethod { get; set; } /// /// 支付方式名称 /// public string PayMethodName { get; set; } /// /// 提箱场站ID /// public string YARDID { get; set; } /// /// 提箱场站 /// public string YARD { get; set; } /// /// 场站联系人 /// public string YARDCONTRACT { get; set; } /// /// 场站联系人电话 /// public string YARDCONTRACTTEL { get; set; } /// /// 工厂ID /// public Nullable FactoryId { get; set; } /// /// 工厂代码 /// public string FactoryCode { get; set; } /// /// 工厂名称 /// public string FactoryName { get; set; } /// /// 工厂联系人 /// public string FactoryContact { get; set; } /// /// 工厂联系电话 /// public string FactoryTel { get; set; } /// /// 派车日期 /// public Nullable TruckTime { get; set; } /// /// 返场时间 /// public Nullable ReturnTime { get; set; } /// /// 要求到达时间 /// public Nullable NeedArriveTime { get; set; } /// /// 截港日期 /// public Nullable ClosingTime { get; set; } /// /// 提货日期 /// public Nullable PickUpTime { get; set; } /// /// 开船日期 /// public Nullable ETD { get; set; } /// /// 入货场站ID /// public string InYardID { get; set; } /// /// 入货场站 /// public string InYard { get; set; } /// /// 入货联系人 /// public string InYardContact { get; set; } /// /// 入货联系人电话 /// public string InYardContractTel { get; set; } /// /// 是否挂机 /// public string IsGuaJi { get; set; } /// /// 注意事项 /// public string Attention { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 调度ID /// public string DispatcherId { get; set; } /// /// 调度名称 /// public string DispatcherName { get; set; } /// /// 工厂地址 /// public string FactoryAddr { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string VoyNo { get; set; } /// /// 提单号 /// public string MBLNo { get; set; } /// /// 箱型箱量 /// public string CntrTotal { get; set; } /// /// 目的港代码 /// public string DestinationID { get; set; } /// /// 目的港名称 /// public string Destination { get; set; } /// /// 船公司代号 /// public string CarrierID { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 集装箱列表 /// public List ContaList { get; set; } } public class TaskTruckCtnPrintDto { /// /// 箱型代码 /// public string CTNCODE { get; set; } /// /// 箱型 /// public string CTNALL { get; set; } /// /// 箱量 /// public Nullable CTNNUM { get; set; } /// /// TEU /// public Nullable TEU { get; set; } /// /// 件数 /// public Nullable PKGS { get; set; } /// /// 箱号 /// public string CNTRNO { get; set; } /// /// 封号 /// public string SEALNO { get; set; } /// /// 包装 /// public string KINDPKGS { get; set; } /// /// 毛重 /// public Nullable KGS { get; set; } /// /// 尺码 /// public Nullable CBM { get; set; } /// /// 皮重 /// public Nullable TAREWEIGHT { get; set; } /// /// 称重重量 /// public Nullable WEIGHKGS { get; set; } /// /// 箱状态 /// public string CTNSTATUS { get; set; } /// /// 称重方式 /// public string WEIGHTYPE { get; set; } /// /// 称重联系人 /// public string WEIGHATTN { get; set; } /// /// VGM联系公司 /// public string VGMCONNCOM { get; set; } /// /// VGM联系电话 /// public string WEIGHTEL { get; set; } /// /// 称重日期 /// public string WEIGHDATE { get; set; } /// /// VGM地址 /// public string VGMADDR { get; set; } /// /// VGM邮箱 /// public string VGMEMAIL { get; set; } /// /// 备注 /// public string REMARK { get; set; } /// /// 车牌号 /// public string CarNumber { get; set; } /// /// 司机 /// public string CarDriver { get; set; } /// /// 司机电话 /// public string CarDriverTel { get; set; } } }