OutStockDayStatisticsResult.cs 1.9 KB

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