OutStockDayStatisticsResult.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Result.Report
  6. {
  7. /// <summary>
  8. /// 出库日统计报表
  9. /// </summary>
  10. public class OutStockDayStatisticsResult
  11. {
  12. /// <summary>
  13. /// 入库单号(对应发货单号)
  14. /// </summary>
  15. public string OutstockNo { get; set; }
  16. public string BillType { get; set; }
  17. public string BillTypeName { get; set; }
  18. public string LineNumber { get; set; }
  19. public DateTime OutstockTime { get; set; }
  20. public DateTime OutstockBillCreateTime { get; set; }
  21. public int? StandardQTY { get; set; }
  22. public string MaterielCode { get; set; }
  23. public string MaterielName { get; set; }
  24. public string MaterielTypeCode { get; set; }
  25. public string MaterielTypeName { get; set; }
  26. public string PackageCode { get; set; }
  27. public string PackageName { get; set; }
  28. public string UnitCode { get; set; }
  29. public string UnitName { get; set; }
  30. public decimal QTY { get; set; }
  31. public decimal Volume { get; set; }
  32. public decimal Weight { get; set; }
  33. public string SupplierContract { get; set; }
  34. public string SupplierCode { get; set; }
  35. public string SupplierName { get; set; }
  36. public DateTime? ProductDate { get; set; }
  37. public DateTime? ExpDate { get; set; }
  38. public int? BalanceStatus { get; set; }
  39. public string BalanceStatusName { get; set; }
  40. public string UsedFlagName { get; set; }
  41. public string CreateName { get; set; }
  42. public string UpdateName { get; set; }
  43. }
  44. }