using DS.WMS.Core.HangfireJob.Dtos; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.QuarztJobs.Dtos { public class WSLWeeklyModel { public string Date { get; set; } public string Month { get; set; } public IEnumerable? List { get; set; } } public class WSLWeeklyItem { /// /// 状态 /// public string? BusinessStatusName { get; set; } /// /// 船公司 /// public string Carrier { get; set; } /// /// 货代公司(订舱口) /// public string Forwarder { get; set; } /// /// 约主名称 /// public string ContractClientName { get; set; } /// /// 运费协议号(约号) /// public string ContractNo { get; set; } /// /// 主提单号 /// public string? MBLNO { get; set; } /// /// 委托编号 /// public string? CustomerNo { get; set; } /// /// ETD /// public string? ETD { get; set; } /// /// 周数 /// public int? Weeks { get; set; } /// /// 装货港 起运港 /// public string LoadPort { get; set; } /// /// 卸货港 目的港 /// public string DischargePort { get; set; } /// /// Desc:MBL付费方式 t_code_frt /// public string MBLFrt { get; set; } /// /// Desc:单证人员 /// public string DocName { get; set; } /// /// 操作员名称 /// public string OperatorName { get; set; } /// /// 客服名称 /// public string CustomerServiceName { get; set; } /// /// 揽货人 /// public string Sale { get; set; } /// /// 航线人员名称 商务 /// public string Laner { get; set; } /// /// 船名 t_code_vessel /// public string Vessel { get; set; } /// /// 航次 /// public string Voyno { get; set; } /// /// 发货人 t_info_client CUSTNAME /// public string Shipper { get; set; } /// /// 收货人 t_info_client CUSTNAME /// public string Consignee { get; set; } /// /// 通知人 t_info_client CUSTNAME /// public string NotifyParty { get; set; } /// /// 创建时间 /// public string? CreateTime { get; set; } } }