EGBalance.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class EGBalance
  8. {
  9. private string _goodsid;
  10. private string _entid;
  11. private decimal _placepack;
  12. private decimal _placenum;
  13. private decimal _storpack;
  14. private decimal _stornum;
  15. private decimal _storamount;
  16. private decimal _cost;
  17. private decimal _finnum;
  18. private decimal _finamount;
  19. private decimal _stormax;
  20. private decimal _stormin;
  21. private decimal _storfit;
  22. private decimal _oldjs;
  23. private decimal _oldnum;
  24. private decimal _oldamount;
  25. private decimal _prepack;
  26. private decimal _prenum;
  27. private decimal _preamount;
  28. private decimal _carrcost;
  29. private decimal _maxpurp;
  30. private decimal _minpurp;
  31. private decimal _lastpurp;
  32. private decimal _fixcost;
  33. private decimal _profitrate;
  34. private decimal _finpack;
  35. public EGBalance()
  36. {
  37. }
  38. public string GoodsId
  39. {
  40. get { return _goodsid; }
  41. set { _goodsid = value; }
  42. }
  43. public string EntId
  44. {
  45. get { return _entid; }
  46. set { _entid = value; }
  47. }
  48. public decimal PlacePack
  49. {
  50. get { return _placepack; }
  51. set { _placepack = value; }
  52. }
  53. public decimal PlaceNum
  54. {
  55. get { return _placenum; }
  56. set { _placenum = value; }
  57. }
  58. public decimal StorPack
  59. {
  60. get { return _storpack; }
  61. set { _storpack = value; }
  62. }
  63. public decimal StorNum
  64. {
  65. get { return _stornum; }
  66. set { _stornum = value; }
  67. }
  68. public decimal StorAmount
  69. {
  70. get { return _storamount; }
  71. set { _storamount = value; }
  72. }
  73. public decimal Cost
  74. {
  75. get { return _cost; }
  76. set { _cost = value; }
  77. }
  78. public decimal FinNum
  79. {
  80. get { return _finnum; }
  81. set { _finnum = value; }
  82. }
  83. public decimal FinAmount
  84. {
  85. get { return _finamount; }
  86. set { _finamount = value; }
  87. }
  88. public decimal StorMax
  89. {
  90. get { return _stormax; }
  91. set { _stormax = value; }
  92. }
  93. public decimal StorMin
  94. {
  95. get { return _stormin; }
  96. set { _stormin = value; }
  97. }
  98. public decimal StorFit
  99. {
  100. get { return _storfit; }
  101. set { _storfit = value; }
  102. }
  103. public decimal oldjs
  104. {
  105. get { return _oldjs; }
  106. set { _oldjs = value; }
  107. }
  108. public decimal OldNum
  109. {
  110. get { return _oldnum; }
  111. set { _oldnum = value; }
  112. }
  113. public decimal OldAmount
  114. {
  115. get { return _oldamount; }
  116. set { _oldamount = value; }
  117. }
  118. public decimal PrePack
  119. {
  120. get { return _prepack; }
  121. set { _prepack = value; }
  122. }
  123. public decimal PreNum
  124. {
  125. get { return _prenum; }
  126. set { _prenum = value; }
  127. }
  128. public decimal PreAmount
  129. {
  130. get { return _preamount; }
  131. set { _preamount = value; }
  132. }
  133. public decimal CarrCost
  134. {
  135. get { return _carrcost; }
  136. set { _carrcost = value; }
  137. }
  138. public decimal MaxPurP
  139. {
  140. get { return _maxpurp; }
  141. set { _maxpurp = value; }
  142. }
  143. public decimal MinPurP
  144. {
  145. get { return _minpurp; }
  146. set { _minpurp = value; }
  147. }
  148. public decimal LastPurP
  149. {
  150. get { return _lastpurp; }
  151. set { _lastpurp = value; }
  152. }
  153. public decimal FixCost
  154. {
  155. get { return _fixcost; }
  156. set { _fixcost = value; }
  157. }
  158. public decimal ProfitRate
  159. {
  160. get { return _profitrate; }
  161. set { _profitrate = value; }
  162. }
  163. public decimal FinPack
  164. {
  165. get { return _finpack; }
  166. set { _finpack = value; }
  167. }
  168. }
  169. }