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 decimal Structure { get; set; }
|
//电子仓数量
|
public decimal Electron { get; set; }
|
public decimal Total { get; set; }
|
public decimal TaskTotal { get; set; }
|
public decimal UnCheckNumber { get; set; }
|
public List<V_MONTH_IN_SUM> TotalByMonthList { get; set; }
|
public List<IncomingRptOutput> 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 decimal? Qty { get; set; }
|
public decimal? InstockQty { get; set; }
|
public decimal? LeftQty { get; set; }
|
public decimal? RejectQty { get; set; }
|
public DateTime? CreationTime { get; set; }
|
}
|
public class TotalByMonth
|
{
|
public decimal Total { get; set; }
|
//public DateTime updatetime { get; set; }
|
public string Month { get; set; }
|
|
//public string mont
|
//{
|
// get
|
// {
|
// return updatetime.Month.ToString();
|
// }
|
//}
|
}
|
}
|