PushStorLimit.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PushStorLimit
  8. {
  9. private decimal _stornum;
  10. private decimal _stormin;
  11. private string _goodsid;
  12. private string _goodscode;
  13. private string _goodsname;
  14. private decimal _storegapnum;//库存缺口减已推在途减在途
  15. private string _suppliersid;
  16. private string _businessid;
  17. private string _businesscode;
  18. private string _businessname;
  19. private string _brandname;
  20. private string _brandid;
  21. private string _entid;
  22. private string _goodsspec;
  23. private string _manufacturer;
  24. private string _goodscat;
  25. private int _purprice;
  26. private decimal _purchasetotalnum;
  27. private decimal _PurLowLimitMSupNum;//库存缺口减已推在途
  28. private decimal _PurLowLimitTotalNum;//库存缺口
  29. private decimal _StorNum;//库存
  30. private decimal _TotalSupNum;//已推在途数量
  31. private decimal _RoadNum;//在途数量
  32. private decimal _StorMin;//下限数量
  33. private decimal _StorMax;//上限数量
  34. public PushStorLimit()
  35. {
  36. }
  37. public decimal StorNum
  38. {
  39. get { return _stornum; }
  40. set { _stornum = value; }
  41. }
  42. public decimal StorMin
  43. {
  44. get { return _stormin; }
  45. set { _stormin = value; }
  46. }
  47. public string GoodsId
  48. {
  49. get { return _goodsid; }
  50. set { _goodsid = value; }
  51. }
  52. public string GoodsCode
  53. {
  54. get { return _goodscode; }
  55. set { _goodscode = value; }
  56. }
  57. public string GoodsName
  58. {
  59. get { return _goodsname; }
  60. set { _goodsname = value; }
  61. }
  62. public decimal StoreGapNum
  63. {
  64. get { return _storegapnum; }
  65. set { _storegapnum = value; }
  66. }
  67. public string SuppliersId
  68. {
  69. get { return _suppliersid; }
  70. set { _suppliersid = value; }
  71. }
  72. public string BusinessId
  73. {
  74. get { return _businessid; }
  75. set { _businessid = value; }
  76. }
  77. public string BusinessCode
  78. {
  79. get { return _businesscode; }
  80. set { _businesscode = value; }
  81. }
  82. public string BusinessName
  83. {
  84. get { return _businessname; }
  85. set { _businessname = value; }
  86. }
  87. public string BrandName
  88. {
  89. get { return _brandname; }
  90. set { _brandname = value; }
  91. }
  92. public string BrandId
  93. {
  94. get { return _brandid; }
  95. set { _brandid = value; }
  96. }
  97. public string EntId
  98. {
  99. get { return _entid; }
  100. set { _entid = value; }
  101. }
  102. public string GoodsSpec
  103. {
  104. get { return _goodsspec; }
  105. set { _goodsspec = value; }
  106. }
  107. public string Manufacturer
  108. {
  109. get { return _manufacturer; }
  110. set { _manufacturer = value; }
  111. }
  112. public string GoodsCat
  113. {
  114. get { return _goodscat; }
  115. set { _goodscat = value; }
  116. }
  117. public int PurPrice
  118. {
  119. get { return _purprice; }
  120. set { _purprice = value; }
  121. }
  122. public decimal PurchaseTotalNum
  123. {
  124. get { return _purchasetotalnum; }
  125. set { _purchasetotalnum = value; }
  126. }
  127. public decimal PurLowLimitTotalNum { get => _PurLowLimitTotalNum; set => _PurLowLimitTotalNum = value; }
  128. public decimal StorNum1 { get => _StorNum; set => _StorNum = value; }
  129. public decimal TotalSupNum { get => _TotalSupNum; set => _TotalSupNum = value; }
  130. public decimal RoadNum { get => _RoadNum; set => _RoadNum = value; }
  131. public decimal StorMin1 { get => _StorMin; set => _StorMin = value; }
  132. public decimal StorMax { get => _StorMax; set => _StorMax = value; }
  133. public decimal PurLowLimitMSupNum { get => _PurLowLimitMSupNum; set => _PurLowLimitMSupNum = value; }
  134. }
  135. }