using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace yunneiPda.EnumDefine { public class inStockEntity { /// /// 表单ID,如果不为0,就表示是编辑 【EditBy shaocx,2022-03-21】 /// public int orderCodeId { get; set; } /// /// 类型:body header /// public string type { get; set; } /// /// 组盘起点 /// public string station { get; set; } public int quantity { get; set; } public string supplier { get; set; } /// /// 物料编号 /// public string productCode { get; set; } public string containerCode { get; set; } public string inStockType { get; set; } public string emptyType { get; set; } public string userName { get; set; } public List dataList { get; set; } /// /// 最终去往的站点,用于处理不走立体库,直接去天永上线点的逻辑 [EditBy shaocx,2022-02-06] /// public string toStieCode { get; set; } } public class serialNumbers { public string serialNumber { get; set; } } }