APGoodsDT.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. using Newtonsoft.Json;
  2. using PublicLibrary.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CoreEntity.Entity
  7. {
  8. [Serializable]
  9. public class APGoodsDT
  10. {
  11. private int _billno;
  12. private int _billsn;
  13. private string _entid;
  14. private int _billsort;
  15. private string _goodsid;
  16. private string _packid;
  17. private string _issettle;
  18. private decimal _jiesje;
  19. private decimal _num;
  20. private decimal _price;
  21. private decimal _amount;
  22. private decimal _taxprice;
  23. private decimal _taxamount;
  24. private decimal _tax;
  25. private decimal _retailp;
  26. private decimal _retailamt;
  27. private decimal _rate;
  28. private decimal _ptaxamount;
  29. private int _soubillno;
  30. private int _soubillsn;
  31. private string _souruleid;
  32. private string _PK;
  33. private string _GoodsName;
  34. private string _GoodsCode;
  35. private string _Unit;
  36. private string _Remark;
  37. public APGoodsDT()
  38. {
  39. }
  40. public int BillNo
  41. {
  42. get { return _billno; }
  43. set { _billno = value; }
  44. }
  45. public int BillSn
  46. {
  47. get { return _billsn; }
  48. set { _billsn = value; }
  49. }
  50. public string EntId
  51. {
  52. get { return _entid; }
  53. set { _entid = value; }
  54. }
  55. public int BillSort
  56. {
  57. get { return _billsort; }
  58. set { _billsort = value; }
  59. }
  60. public string GoodsId
  61. {
  62. get { return _goodsid; }
  63. set { _goodsid = value; }
  64. }
  65. public string PackId
  66. {
  67. get { return _packid; }
  68. set { _packid = value; }
  69. }
  70. [JsonConverter(typeof(BoolConvert),"是,否")]
  71. public string IsSettle
  72. {
  73. get { return _issettle; }
  74. set { _issettle = value; }
  75. }
  76. public decimal jiesje
  77. {
  78. get { return _jiesje; }
  79. set { _jiesje = value; }
  80. }
  81. public decimal Num
  82. {
  83. get { return _num; }
  84. set { _num = value; }
  85. }
  86. public decimal Price
  87. {
  88. get { return _price; }
  89. set { _price = value; }
  90. }
  91. public decimal Amount
  92. {
  93. get { return _amount; }
  94. set { _amount = value; }
  95. }
  96. public decimal Taxprice
  97. {
  98. get { return _taxprice; }
  99. set { _taxprice = value; }
  100. }
  101. public decimal TaxAmount
  102. {
  103. get { return _taxamount; }
  104. set { _taxamount = value; }
  105. }
  106. public decimal Tax
  107. {
  108. get { return _tax; }
  109. set { _tax = value; }
  110. }
  111. public decimal RetailP
  112. {
  113. get { return _retailp; }
  114. set { _retailp = value; }
  115. }
  116. public decimal RetailAmt
  117. {
  118. get { return _retailamt; }
  119. set { _retailamt = value; }
  120. }
  121. public decimal Rate
  122. {
  123. get { return _rate; }
  124. set { _rate = value; }
  125. }
  126. public decimal PTaxAmount
  127. {
  128. get { return _ptaxamount; }
  129. set { _ptaxamount = value; }
  130. }
  131. public int SouBillNo
  132. {
  133. get { return _soubillno; }
  134. set { _soubillno = value; }
  135. }
  136. public int SouBillSn
  137. {
  138. get { return _soubillsn; }
  139. set { _soubillsn = value; }
  140. }
  141. public string SouRuleId
  142. {
  143. get { return _souruleid; }
  144. set { _souruleid = value; }
  145. }
  146. public string PK { get => _PK; set => _PK = value; }
  147. public string GoodsName { get => _GoodsName; set => _GoodsName = value; }
  148. public string Unit { get => _Unit; set => _Unit = value; }
  149. public string GoodsCode { get => _GoodsCode; set => _GoodsCode = value; }
  150. public string Remark { get => _Remark; set => _Remark = value; }
  151. }
  152. }