PGPrice.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PGPrice
  8. {
  9. private string _packid;
  10. private string _entid;
  11. private string _goodsid;
  12. private string _unit;
  13. private int _meas;
  14. private string _barcode;
  15. private decimal _purp;
  16. private decimal _purtaxp;
  17. private decimal _salep;
  18. private decimal _saletaxp;
  19. private decimal _retailp;
  20. private string _isbase;
  21. private string _ispurpack;
  22. private string _isretpack;
  23. private decimal _memprice;
  24. private decimal _length;
  25. private decimal _wide;
  26. private decimal _high;
  27. private decimal _bulks;
  28. private decimal _weight;
  29. private string _issalepack;
  30. private string _isalwpur;
  31. private string _isalwret;
  32. private string _goodsspec;
  33. private string _isinpack;
  34. private string _iswmspack;
  35. private string _lastmodifytime;
  36. private string _beactive;
  37. private string _zypackid;
  38. public PGPrice()
  39. {
  40. }
  41. public string PackId
  42. {
  43. get { return _packid; }
  44. set { _packid = value; }
  45. }
  46. public string EntId
  47. {
  48. get { return _entid; }
  49. set { _entid = value; }
  50. }
  51. public string GoodsId
  52. {
  53. get { return _goodsid; }
  54. set { _goodsid = value; }
  55. }
  56. public string unit
  57. {
  58. get { return _unit; }
  59. set { _unit = value; }
  60. }
  61. public int Meas
  62. {
  63. get { return _meas; }
  64. set { _meas = value; }
  65. }
  66. public string BarCode
  67. {
  68. get { return _barcode; }
  69. set { _barcode = value; }
  70. }
  71. public decimal PurP
  72. {
  73. get { return _purp; }
  74. set { _purp = value; }
  75. }
  76. public decimal PurTaxP
  77. {
  78. get { return _purtaxp; }
  79. set { _purtaxp = value; }
  80. }
  81. public decimal SaleP
  82. {
  83. get { return _salep; }
  84. set { _salep = value; }
  85. }
  86. public decimal SaleTaxP
  87. {
  88. get { return _saletaxp; }
  89. set { _saletaxp = value; }
  90. }
  91. public decimal RetailP
  92. {
  93. get { return _retailp; }
  94. set { _retailp = value; }
  95. }
  96. public string IsBase
  97. {
  98. get { return _isbase; }
  99. set { _isbase = value; }
  100. }
  101. public string IsPurPack
  102. {
  103. get { return _ispurpack; }
  104. set { _ispurpack = value; }
  105. }
  106. public string IsRetPack
  107. {
  108. get { return _isretpack; }
  109. set { _isretpack = value; }
  110. }
  111. public decimal MemPrice
  112. {
  113. get { return _memprice; }
  114. set { _memprice = value; }
  115. }
  116. public decimal Length
  117. {
  118. get { return _length; }
  119. set { _length = value; }
  120. }
  121. public decimal Wide
  122. {
  123. get { return _wide; }
  124. set { _wide = value; }
  125. }
  126. public decimal High
  127. {
  128. get { return _high; }
  129. set { _high = value; }
  130. }
  131. public decimal Bulks
  132. {
  133. get { return _bulks; }
  134. set { _bulks = value; }
  135. }
  136. public decimal Weight
  137. {
  138. get { return _weight; }
  139. set { _weight = value; }
  140. }
  141. public string IsSalePack
  142. {
  143. get { return _issalepack; }
  144. set { _issalepack = value; }
  145. }
  146. public string IsAlwPur
  147. {
  148. get { return _isalwpur; }
  149. set { _isalwpur = value; }
  150. }
  151. public string IsAlwRet
  152. {
  153. get { return _isalwret; }
  154. set { _isalwret = value; }
  155. }
  156. public string GoodsSpec
  157. {
  158. get { return _goodsspec; }
  159. set { _goodsspec = value; }
  160. }
  161. public string IsInPack
  162. {
  163. get { return _isinpack; }
  164. set { _isinpack = value; }
  165. }
  166. public string IsWmsPack
  167. {
  168. get { return _iswmspack; }
  169. set { _iswmspack = value; }
  170. }
  171. public string LastModifyTime
  172. {
  173. get { return _lastmodifytime; }
  174. set { _lastmodifytime = value; }
  175. }
  176. public string Beactive
  177. {
  178. get { return _beactive; }
  179. set { _beactive = value; }
  180. }
  181. public string ZYPackId
  182. {
  183. get { return _zypackid; }
  184. set { _zypackid = value; }
  185. }
  186. }
  187. }