InvoiceBill.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class InvoiceBill
  8. {
  9. private int _billno;
  10. private int _billsn;
  11. private string _entid;
  12. private int _billsort;
  13. private decimal _billamt;
  14. private decimal _taxamount;
  15. private decimal _amount;
  16. private decimal _tax;
  17. private int _rfbillno;
  18. private string _rfbillcode;
  19. private string _summaries;
  20. private string _rfruleid;
  21. private string _dates;
  22. private string _deptid;
  23. private string _salemanid;
  24. private string _K_BillCode;
  25. private string _pk;
  26. private string _Contact;
  27. private string _StaffName;
  28. public InvoiceBill()
  29. {
  30. }
  31. public int BillNo
  32. {
  33. get { return _billno; }
  34. set { _billno = value; }
  35. }
  36. public int BillSn
  37. {
  38. get { return _billsn; }
  39. set { _billsn = value; }
  40. }
  41. public string EntId
  42. {
  43. get { return _entid; }
  44. set { _entid = value; }
  45. }
  46. public int BillSort
  47. {
  48. get { return _billsort; }
  49. set { _billsort = value; }
  50. }
  51. public decimal BillAmt
  52. {
  53. get { return _billamt; }
  54. set { _billamt = value; }
  55. }
  56. public decimal TaxAmount
  57. {
  58. get { return _taxamount; }
  59. set { _taxamount = value; }
  60. }
  61. public decimal Amount
  62. {
  63. get { return _amount; }
  64. set { _amount = value; }
  65. }
  66. public decimal Tax
  67. {
  68. get { return _tax; }
  69. set { _tax = value; }
  70. }
  71. public int RfBillNo
  72. {
  73. get { return _rfbillno; }
  74. set { _rfbillno = value; }
  75. }
  76. public string RfBillCode
  77. {
  78. get { return _rfbillcode; }
  79. set { _rfbillcode = value; }
  80. }
  81. public string Summaries
  82. {
  83. get { return _summaries; }
  84. set { _summaries = value; }
  85. }
  86. public string RfRuleId
  87. {
  88. get { return _rfruleid; }
  89. set { _rfruleid = value; }
  90. }
  91. public string Dates
  92. {
  93. get { return _dates; }
  94. set { _dates = value; }
  95. }
  96. public string DeptId
  97. {
  98. get { return _deptid; }
  99. set { _deptid = value; }
  100. }
  101. public string SaleManId
  102. {
  103. get { return _salemanid; }
  104. set { _salemanid = value; }
  105. }
  106. public string K_BillCode { get => _K_BillCode; set => _K_BillCode = value; }
  107. public string Pk { get => _pk; set => _pk = value; }
  108. public string StaffName { get => _StaffName; set => _StaffName = value; }
  109. public string Contact { get => _Contact; set => _Contact = value; }
  110. }
  111. }