PurPlanDt.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PurPlanDT
  8. {
  9. private long _billno;
  10. private int _billsn;
  11. private string _entid;
  12. private int _billsort;
  13. private string _suppliersid;
  14. private string _goodsid;
  15. private string _packid;
  16. private string _unit;
  17. private int _meas;
  18. private decimal _basenum;
  19. private decimal _num;
  20. private decimal _execnum;
  21. private decimal _cancelnum;
  22. private decimal _price;
  23. private decimal _taxprice;
  24. private decimal _baseprice;
  25. private decimal _basetaxprice;
  26. private decimal _dedrate;
  27. private decimal _amount;
  28. private decimal _rate;
  29. private decimal _tax;
  30. private decimal _taxamount;
  31. private decimal _retailp;
  32. private decimal _retailamt;
  33. private string _isfree;
  34. private string _isdone;
  35. private string _remark;
  36. private decimal _dayttnum;
  37. private decimal _daystnum;
  38. private decimal _dayntnum;
  39. private decimal _dayhenum;
  40. private decimal _mintaxprice;
  41. private decimal _lasttaxprice;
  42. private string _lastsupp;
  43. private decimal _placenum;
  44. private decimal _pursuppnum;
  45. private decimal _lacknum;
  46. private int _songhts;
  47. private int _safedays;
  48. private decimal _ponum;
  49. private string _pushfeedbackid;
  50. private string _pushrecordid;
  51. public PurPlanDT()
  52. {
  53. }
  54. public long BillNo
  55. {
  56. get { return _billno; }
  57. set { _billno = value; }
  58. }
  59. public int BillSn
  60. {
  61. get { return _billsn; }
  62. set { _billsn = value; }
  63. }
  64. public string EntId
  65. {
  66. get { return _entid; }
  67. set { _entid = value; }
  68. }
  69. public int BillSort
  70. {
  71. get { return _billsort; }
  72. set { _billsort = value; }
  73. }
  74. public string SuppliersId
  75. {
  76. get { return _suppliersid; }
  77. set { _suppliersid = value; }
  78. }
  79. public string GoodsId
  80. {
  81. get { return _goodsid; }
  82. set { _goodsid = value; }
  83. }
  84. public string PackId
  85. {
  86. get { return _packid; }
  87. set { _packid = value; }
  88. }
  89. public string unit
  90. {
  91. get { return _unit; }
  92. set { _unit = value; }
  93. }
  94. public int Meas
  95. {
  96. get { return _meas; }
  97. set { _meas = value; }
  98. }
  99. public decimal BaseNum
  100. {
  101. get { return _basenum; }
  102. set { _basenum = value; }
  103. }
  104. public decimal Num
  105. {
  106. get { return _num; }
  107. set { _num = value; }
  108. }
  109. public decimal ExecNum
  110. {
  111. get { return _execnum; }
  112. set { _execnum = value; }
  113. }
  114. public decimal CancelNum
  115. {
  116. get { return _cancelnum; }
  117. set { _cancelnum = value; }
  118. }
  119. public decimal Price
  120. {
  121. get { return _price; }
  122. set { _price = value; }
  123. }
  124. public decimal Taxprice
  125. {
  126. get { return _taxprice; }
  127. set { _taxprice = value; }
  128. }
  129. public decimal BasePrice
  130. {
  131. get { return _baseprice; }
  132. set { _baseprice = value; }
  133. }
  134. public decimal BaseTaxprice
  135. {
  136. get { return _basetaxprice; }
  137. set { _basetaxprice = value; }
  138. }
  139. public decimal DedRate
  140. {
  141. get { return _dedrate; }
  142. set { _dedrate = value; }
  143. }
  144. public decimal Amount
  145. {
  146. get { return _amount; }
  147. set { _amount = value; }
  148. }
  149. public decimal Rate
  150. {
  151. get { return _rate; }
  152. set { _rate = value; }
  153. }
  154. public decimal Tax
  155. {
  156. get { return _tax; }
  157. set { _tax = value; }
  158. }
  159. public decimal TaxAmount
  160. {
  161. get { return _taxamount; }
  162. set { _taxamount = value; }
  163. }
  164. public decimal RetailP
  165. {
  166. get { return _retailp; }
  167. set { _retailp = value; }
  168. }
  169. public decimal RetailAmt
  170. {
  171. get { return _retailamt; }
  172. set { _retailamt = value; }
  173. }
  174. public string IsFree
  175. {
  176. get { return _isfree; }
  177. set { _isfree = value; }
  178. }
  179. public string IsDone
  180. {
  181. get { return _isdone; }
  182. set { _isdone = value; }
  183. }
  184. public string Remark
  185. {
  186. get { return _remark; }
  187. set { _remark = value; }
  188. }
  189. public decimal DayTTNum
  190. {
  191. get { return _dayttnum; }
  192. set { _dayttnum = value; }
  193. }
  194. public decimal DaySTNum
  195. {
  196. get { return _daystnum; }
  197. set { _daystnum = value; }
  198. }
  199. public decimal DayNTNum
  200. {
  201. get { return _dayntnum; }
  202. set { _dayntnum = value; }
  203. }
  204. public decimal DayHENum
  205. {
  206. get { return _dayhenum; }
  207. set { _dayhenum = value; }
  208. }
  209. public decimal MinTaxPrice
  210. {
  211. get { return _mintaxprice; }
  212. set { _mintaxprice = value; }
  213. }
  214. public decimal LastTaxPrice
  215. {
  216. get { return _lasttaxprice; }
  217. set { _lasttaxprice = value; }
  218. }
  219. public string LastSupp
  220. {
  221. get { return _lastsupp; }
  222. set { _lastsupp = value; }
  223. }
  224. public decimal PlaceNum
  225. {
  226. get { return _placenum; }
  227. set { _placenum = value; }
  228. }
  229. public decimal PurSuppNum
  230. {
  231. get { return _pursuppnum; }
  232. set { _pursuppnum = value; }
  233. }
  234. public decimal LackNum
  235. {
  236. get { return _lacknum; }
  237. set { _lacknum = value; }
  238. }
  239. public int songhts
  240. {
  241. get { return _songhts; }
  242. set { _songhts = value; }
  243. }
  244. public int SafeDays
  245. {
  246. get { return _safedays; }
  247. set { _safedays = value; }
  248. }
  249. public decimal PONum
  250. {
  251. get { return _ponum; }
  252. set { _ponum = value; }
  253. }
  254. public string PushFeedBackId
  255. {
  256. get { return _pushfeedbackid; }
  257. set { _pushfeedbackid = value; }
  258. }
  259. public string PushRecordId
  260. {
  261. get { return _pushrecordid; }
  262. set { _pushrecordid = value; }
  263. }
  264. }
  265. public class PurPlanDtExt : PurPlanDT
  266. {
  267. private string _AccountRealName;
  268. private string _PurRealName;
  269. private string _BusinessName;
  270. private string _GoodsName;
  271. private string _UniKey;
  272. private int _BillState;
  273. public string AccountRealName { get => _AccountRealName; set => _AccountRealName = value; }
  274. public string PurRealName { get => _PurRealName; set => _PurRealName = value; }
  275. public string BusinessName { get => _BusinessName; set => _BusinessName = value; }
  276. public string UniKey { get => _UniKey; set => _UniKey = value; }
  277. public string GoodsName { get => _GoodsName; set => _GoodsName = value; }
  278. public int BillState { get => _BillState; set => _BillState = value; }
  279. }
  280. }