using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model { public class PartialProductKBInput { public string StorageCode { get; set; } public string StationCode { get; set; } public int PageNumber { get; set; } public int PerNumber { get; set; } } public class MaterialKBInput { public string BillCode { get; set; } public string MaterialCode { get; set; } public string Barcode { get; set; } public string WarehouseCode { get; set; } } public class MaterialKBOutput { //结构仓数量 public double Structure { get; set; } //电子仓数量 public double Electron { get; set; } public double Total { get; set; } public double TaskTotal { get; set; } public double UnCheckNumber { get; set; } public List TotalByMonthList { get; set; } public List IncomingRptList { get; set; } } public class IncomingRptOutput { public string BillCode { get; set; } public string WarehouseCode { get; set; } public string MaterialCode { get; set; } public string MaterialName { get; set; } public int Status { get; set; } public double? Qty { get; set; } public double? InstockQty { get; set; } public double? LeftQty { get; set; } public double? RejectQty { get; set; } public DateTime? CreationTime { get; set; } } public class TotalByMonth { public double Total { get; set; } //public DateTime updatetime { get; set; } public string Month { get; set; } //public string mont //{ // get // { // return updatetime.Month.ToString(); // } //} } }