LocationForStrategyInfo.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using wms.sqlsugar.model.hj;
  5. namespace wms.service.Service
  6. {
  7. public class LocationForStrategyInfo: hjBaseWareLocation
  8. {
  9. public List<LocationForStrategyInfoStock> StockList { get; set; }
  10. public long WarehouseId { get; set; }
  11. public string WarehouseCode { get; set; }
  12. public string ZoneCode { get; set; }
  13. /// <summary>
  14. /// 优先熟化
  15. /// </summary>
  16. public int IsFirstBake { get; set; } = 0;
  17. }
  18. public class LocationForStrategyInfoStock
  19. {
  20. public long GroupStockId { get; set; }
  21. public string ContainerCode { get; set; }
  22. public string GroupStockState { get; set; }
  23. public string GroupStockType { get; set; }
  24. public DateTime LastInTime { get; set; }
  25. public DateTime LastOutTime { get; set; }
  26. public DateTime LastCheckTime { get; set; }
  27. /// <summary>
  28. /// 最近盘库时间
  29. /// </summary>
  30. public int KeepTime { get; set; }
  31. public long GroupStockDetailId { get; set; }
  32. public long BarCodeId { get; set; }
  33. public string Barcode { get; set; }
  34. public decimal Quantity { get; set; }
  35. public decimal Weight { get; set; }
  36. public string Position { get; set; }
  37. public long MaterialId { get; set; }
  38. public string BoxCode { get; set; }
  39. public string Grade { get; set; }
  40. public string Batch { get; set; }
  41. public string MaterialState { get; set; }
  42. public string MaterialCode { get; set; }
  43. public long WarehouseDocumentDetailId { get; set; }
  44. public long InventoryDetailId { get; set; }
  45. public DateTime InTime { get; set; }
  46. public DateTime ProductionTime { get; set; }
  47. }
  48. public class LocationForStrategyInfoTemp
  49. {
  50. public long Id { get; set; }
  51. public string Name { get; set; }
  52. public string Code { get; set; }
  53. public long ZoneId { get; set; }
  54. public string ZoneCode { get; set; }
  55. public long WarehouseId { get; set; }
  56. public string WarehouseCode { get; set; }
  57. public string LocationLock { get; set; }
  58. public int Sort { get; set; }
  59. public string ShelfCode { get; set; }
  60. public string Tunnel { get; set; }
  61. public decimal MaxWeight { get; set; }
  62. public long EquipmentId { get; set; }
  63. public string Fork { get; set; }
  64. public string Depth { get; set; }
  65. public string LogicLayer { get; set; }
  66. public string LogicCol { get; set; }
  67. public string LogicRow { get; set; }
  68. public string PhysicalCol { get; set; }
  69. public string PhysicalLayer { get; set; }
  70. public string PhysicalRow { get; set; }
  71. public string Size { get; set; }
  72. public string LocationType { get; set; }
  73. public string LocationState { get; set; }
  74. public long GroupStockId { get; set; }
  75. public string ContainerCode { get; set; }
  76. public string GroupStockState { get; set; }
  77. public string GroupStockType { get; set; }
  78. public DateTime LastInTime { get; set; }
  79. public DateTime LastOutTime { get; set; }
  80. public DateTime LastCheckTime { get; set; }
  81. /// <summary>
  82. /// 最近盘库时间
  83. /// </summary>
  84. public int KeepTime { get; set; }
  85. public long GroupStockDetailId { get; set; }
  86. public long BarCodeId { get; set; }
  87. public string Barcode { get; set; }
  88. public decimal Quantity { get; set; }
  89. public decimal Weight { get; set; }
  90. public string Position { get; set; }
  91. public long MaterialId { get; set; }
  92. public string BoxCode { get; set; }
  93. public string Grade { get; set; }
  94. public string Batch { get; set; }
  95. public string MaterialState { get; set; }
  96. public string MaterialCode { get; set; }
  97. public long WarehouseDocumentDetailId { get; set; }
  98. public long InventoryDetailId { get; set; }
  99. public DateTime InTime { get; set; }
  100. public decimal CoolDownHours { get; set; }
  101. public DateTime ProductionTime { get; set; }
  102. public int LocationStatus { get; set; }
  103. public string TunnelConf { get; set; }
  104. public string EquipState { get; set; }
  105. }
  106. }