using DS.WMS.Core.System.Dtos; namespace DS.WMS.Core.WmsModule.Dtos; public class WmsInPlanInput { public Guid? WMSPLANID { get; set; } /// /// 委托编号 /// public string WMSNO { get; set; } = ""; /// /// 提单号 /// public string MBLNO { get; set; } = ""; /// /// 合同编号 /// public string CONTRACTNO { get; set; } = ""; /// /// 预计日期 /// public DateTime? PLANTIME { get; set; } /// /// /// public string GOODSNAME { get; set; } = ""; /// /// /// public string GOODSMODEL { get; set; } = ""; /// /// 包装方式 /// public string KINDPKGS { get; set; } = ""; /// /// /// public string CUSTOMERNAME { get; set; } = ""; /// /// /// public string BILLTYPE { get; set; } = ""; /// /// /// public string CUSTOMNO { get; set; } = ""; /// /// 备注 /// public string REMARK { get; set; } = ""; /// /// /// public string STOREHOUSE { get; set; }= ""; /// /// 保税单 /// public fileinfo[]? File { get; set; } /// /// 计划明细 /// public List List{ get; set; } }