using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// /// public class DJYChargeFeeBaseDto { /// /// 请求主键 /// public string runId { get; set; } /// /// 大简云用户注册ID /// public string userId { get; set; } /// /// 模块 /// public string module { get; set; } /// /// 业务类型 /// public string bsType { get; set; } /// /// 请求类型 /// public string sendType { get; set; } /// /// 时间戳 /// public long timestamp { get; set; } /// /// MD5 /// public string md5 { get; set; } /// /// /// public DJYChargeFeeDataDto Data { get; set; } } public class DJYChargeFeeDataDto { /// /// 业务主键 /// public string BSNO { get; set; } /// /// 主提单号 /// public string MBLNO { get; set; } /// /// 分单号 /// public string HBLNO { get; set; } /// /// 箱信息 /// public string CtnrInfo { get; set; } /// /// 箱量 /// public int CtnrCount { get; set; } /// /// 大简云用户ID /// public string LURURENID { get; set; } /// /// 大简云用户ID /// public string SENDUSERID { get; set; } /// /// 船名 /// public string VESSEL { get; set; } /// /// 航次 /// public string VOYNO { get; set; } /// /// 预计离港(如果有ATD,优先填ATD) /// public Nullable ETD { get; set; } /// /// 船公司 /// public string CARRIER { get; set; } /// /// /// public int IsCredit { get; set; } } }