Invoicemt.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CoreEntity.Entity
  6. {
  7. [Serializable]
  8. public class InvoiceMT
  9. {
  10. private int _billno;
  11. private string _entid;
  12. private string _billcode;
  13. private string _ruleid;
  14. private string _dates;
  15. private string _ontime;
  16. private string _sysdates;
  17. private string _invoicecode;
  18. private string _invoicerail;
  19. private string _rfid;
  20. private string _rftype;
  21. private decimal _taxamount;
  22. private decimal _amount;
  23. private decimal _tax;
  24. private string _caozy;
  25. private string _deptid;
  26. private string _orgid;
  27. private string _isend;
  28. private string _summaries;
  29. private string _remark;
  30. private string _invoicetype;
  31. private decimal _billamt;
  32. private string _isout;
  33. private string _payorgid;
  34. private string _currencyid;
  35. private string _directorid;
  36. private int _billstate;
  37. private string _invoicecat;
  38. private string _invoicehead;
  39. private string _taxno;
  40. private int _saleinvosrc;
  41. private string _invoicedate;
  42. public InvoiceMT()
  43. {
  44. }
  45. public int BillNo
  46. {
  47. get { return _billno; }
  48. set { _billno = value; }
  49. }
  50. public string EntId
  51. {
  52. get { return _entid; }
  53. set { _entid = value; }
  54. }
  55. public string BillCode
  56. {
  57. get { return _billcode; }
  58. set { _billcode = value; }
  59. }
  60. public string RuleId
  61. {
  62. get { return _ruleid; }
  63. set { _ruleid = value; }
  64. }
  65. public string Dates
  66. {
  67. get { return _dates; }
  68. set { _dates = value; }
  69. }
  70. public string OnTime
  71. {
  72. get { return _ontime; }
  73. set { _ontime = value; }
  74. }
  75. public string SysDates
  76. {
  77. get { return _sysdates; }
  78. set { _sysdates = value; }
  79. }
  80. public string InvoiceCode
  81. {
  82. get { return _invoicecode; }
  83. set { _invoicecode = value; }
  84. }
  85. public string InvoiceRail
  86. {
  87. get { return _invoicerail; }
  88. set { _invoicerail = value; }
  89. }
  90. public string RfId
  91. {
  92. get { return _rfid; }
  93. set { _rfid = value; }
  94. }
  95. public string RfType
  96. {
  97. get { return _rftype; }
  98. set { _rftype = value; }
  99. }
  100. public decimal TaxAmount
  101. {
  102. get { return _taxamount; }
  103. set { _taxamount = value; }
  104. }
  105. public decimal Amount
  106. {
  107. get { return _amount; }
  108. set { _amount = value; }
  109. }
  110. public decimal Tax
  111. {
  112. get { return _tax; }
  113. set { _tax = value; }
  114. }
  115. public string caozy
  116. {
  117. get { return _caozy; }
  118. set { _caozy = value; }
  119. }
  120. public string DeptId
  121. {
  122. get { return _deptid; }
  123. set { _deptid = value; }
  124. }
  125. public string OrgId
  126. {
  127. get { return _orgid; }
  128. set { _orgid = value; }
  129. }
  130. public string IsEnd
  131. {
  132. get { return _isend; }
  133. set { _isend = value; }
  134. }
  135. public string Summaries
  136. {
  137. get { return _summaries; }
  138. set { _summaries = value; }
  139. }
  140. public string Remark
  141. {
  142. get { return _remark; }
  143. set { _remark = value; }
  144. }
  145. public string InvoiceType
  146. {
  147. get { return _invoicetype; }
  148. set { _invoicetype = value; }
  149. }
  150. public decimal BillAmt
  151. {
  152. get { return _billamt; }
  153. set { _billamt = value; }
  154. }
  155. public string IsOut
  156. {
  157. get { return _isout; }
  158. set { _isout = value; }
  159. }
  160. public string PayOrgId
  161. {
  162. get { return _payorgid; }
  163. set { _payorgid = value; }
  164. }
  165. public string CurrencyId
  166. {
  167. get { return _currencyid; }
  168. set { _currencyid = value; }
  169. }
  170. public string DirectorId
  171. {
  172. get { return _directorid; }
  173. set { _directorid = value; }
  174. }
  175. public int BillState
  176. {
  177. get { return _billstate; }
  178. set { _billstate = value; }
  179. }
  180. public string InvoiceCat
  181. {
  182. get { return _invoicecat; }
  183. set { _invoicecat = value; }
  184. }
  185. public string InvoiceHead
  186. {
  187. get { return _invoicehead; }
  188. set { _invoicehead = value; }
  189. }
  190. public string TaxNo
  191. {
  192. get { return _taxno; }
  193. set { _taxno = value; }
  194. }
  195. public int SaleInvoSrc
  196. {
  197. get { return _saleinvosrc; }
  198. set { _saleinvosrc = value; }
  199. }
  200. public string InvoiceDate
  201. {
  202. get { return _invoicedate; }
  203. set { _invoicedate = value; }
  204. }
  205. }
  206. }