PlanBillDT.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PlanBillDT
  8. {
  9. private int _billno;
  10. private int _billsn;
  11. private string _entid;
  12. private int _billsort;
  13. private int _rfbillno;
  14. private decimal _taxamount;
  15. private decimal _ptaxamount;
  16. private string _payddate;
  17. private string _issettle;
  18. private decimal _jiesje;
  19. private string _remark;
  20. public PlanBillDT()
  21. {
  22. }
  23. public int BillNo
  24. {
  25. get { return _billno; }
  26. set { _billno = value; }
  27. }
  28. public int BillSn
  29. {
  30. get { return _billsn; }
  31. set { _billsn = value; }
  32. }
  33. public string EntId
  34. {
  35. get { return _entid; }
  36. set { _entid = value; }
  37. }
  38. public int BillSort
  39. {
  40. get { return _billsort; }
  41. set { _billsort = value; }
  42. }
  43. public int RfBillNo
  44. {
  45. get { return _rfbillno; }
  46. set { _rfbillno = value; }
  47. }
  48. public decimal TaxAmount
  49. {
  50. get { return _taxamount; }
  51. set { _taxamount = value; }
  52. }
  53. public decimal PTaxAmount
  54. {
  55. get { return _ptaxamount; }
  56. set { _ptaxamount = value; }
  57. }
  58. public string PayDdate
  59. {
  60. get { return _payddate; }
  61. set { _payddate = value; }
  62. }
  63. public string IsSettle
  64. {
  65. get { return _issettle; }
  66. set { _issettle = value; }
  67. }
  68. public decimal jiesje
  69. {
  70. get { return _jiesje; }
  71. set { _jiesje = value; }
  72. }
  73. public string Remark
  74. {
  75. get { return _remark; }
  76. set { _remark = value; }
  77. }
  78. }
  79. }