InvoiceDT.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class InvoiceDT
  8. {
  9. private int _billno;
  10. private string _entid;
  11. private int _billsn;
  12. private int _billsort;
  13. private string _goodsid;
  14. private string _packid;
  15. private int _meas;
  16. private string _angleid;
  17. private decimal _num;
  18. private decimal _price;
  19. private decimal _taxprice;
  20. private decimal _basenum;
  21. private decimal _dedrate;
  22. private decimal _amount;
  23. private decimal _rate;
  24. private decimal _tax;
  25. private decimal _taxamount;
  26. private decimal _jiesje;
  27. private string _issettle;
  28. private int _rfbillno;
  29. private int _rfbillsn;
  30. private string _unit;
  31. private string _Pk;
  32. public InvoiceDT()
  33. {
  34. }
  35. public int BillNo
  36. {
  37. get { return _billno; }
  38. set { _billno = value; }
  39. }
  40. public string EntId
  41. {
  42. get { return _entid; }
  43. set { _entid = value; }
  44. }
  45. public int BillSn
  46. {
  47. get { return _billsn; }
  48. set { _billsn = value; }
  49. }
  50. public int BillSort
  51. {
  52. get { return _billsort; }
  53. set { _billsort = value; }
  54. }
  55. public string GoodsId
  56. {
  57. get { return _goodsid; }
  58. set { _goodsid = value; }
  59. }
  60. public string PackId
  61. {
  62. get { return _packid; }
  63. set { _packid = value; }
  64. }
  65. public int Meas
  66. {
  67. get { return _meas; }
  68. set { _meas = value; }
  69. }
  70. public string AngleId
  71. {
  72. get { return _angleid; }
  73. set { _angleid = value; }
  74. }
  75. public decimal Num
  76. {
  77. get { return _num; }
  78. set { _num = value; }
  79. }
  80. public decimal Price
  81. {
  82. get { return _price; }
  83. set { _price = value; }
  84. }
  85. public decimal Taxprice
  86. {
  87. get { return _taxprice; }
  88. set { _taxprice = value; }
  89. }
  90. public decimal BaseNum
  91. {
  92. get { return _basenum; }
  93. set { _basenum = value; }
  94. }
  95. public decimal DedRate
  96. {
  97. get { return _dedrate; }
  98. set { _dedrate = value; }
  99. }
  100. public decimal Amount
  101. {
  102. get { return _amount; }
  103. set { _amount = value; }
  104. }
  105. public decimal Rate
  106. {
  107. get { return _rate; }
  108. set { _rate = value; }
  109. }
  110. public decimal Tax
  111. {
  112. get { return _tax; }
  113. set { _tax = value; }
  114. }
  115. public decimal TaxAmount
  116. {
  117. get { return _taxamount; }
  118. set { _taxamount = value; }
  119. }
  120. public decimal jiesje
  121. {
  122. get { return _jiesje; }
  123. set { _jiesje = value; }
  124. }
  125. public string IsSettle
  126. {
  127. get { return _issettle; }
  128. set { _issettle = value; }
  129. }
  130. public int RfBillNo
  131. {
  132. get { return _rfbillno; }
  133. set { _rfbillno = value; }
  134. }
  135. public int RfBillSn
  136. {
  137. get { return _rfbillsn; }
  138. set { _rfbillsn = value; }
  139. }
  140. public string unit
  141. {
  142. get { return _unit; }
  143. set { _unit = value; }
  144. }
  145. public string Pk { get => _Pk; set => _Pk = value; }
  146. }
  147. }