PlanGoodsDT.cs 2.1 KB

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