using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info.Models { public class WorkOrderRequest { public List workOrders { get; set; } } public class WorkOrder { public string wo_domain { get; set; } public string wo_site { get; set; } /// /// 工单号 /// public string wo_lot { get; set; } /// /// 行号 /// public int wo_line { get; set; } /// /// 需求数量 /// public int wo_qty_ord { get; set; } /// /// 完成数量 /// public int wo_qty_comp { get; set; } /// /// /// public int wo_qty_need { get { return wo_qty_ord - wo_qty_comp; } } /// /// 批次 /// public string lotserial { get; set; } /// /// 储位 /// public string location { get; set; } } }