APGoodsMT.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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 APGoodsMT
  10. {
  11. private int _billno;
  12. private string _entid;
  13. private string _billcode;
  14. private string _ruleid;
  15. private string _payorgid;
  16. private string _orgid;
  17. private string _deptid;
  18. private string _caozy;
  19. private string _dates;
  20. private string _ontime;
  21. private string _sysdates;
  22. private string _rfid;
  23. private string _rftype;
  24. private string _issettle;
  25. private decimal _jiesje;
  26. private decimal _amount;
  27. private decimal _taxamount;
  28. private decimal _tax;
  29. private decimal _retailamt;
  30. private string _summaries;
  31. private string _salemanid;
  32. private decimal _ptaxamount;
  33. private string _StaffName;
  34. private string _Contact;
  35. private string _K_BillCode;
  36. private string _IsPrepay;
  37. private decimal _PrepayAmt;
  38. private string _K_djpjzt;
  39. private List<APGoodsDT> _goodsList;
  40. private string _Remark;
  41. private string _OppContId;
  42. private string _PayType;
  43. private string _K_IsApplyP;
  44. private string _BusinessName;
  45. private string _Source;
  46. private int _PBillNo;
  47. private string _PBillCode;
  48. public APGoodsMT()
  49. {
  50. }
  51. public int BillNo
  52. {
  53. get { return _billno; }
  54. set { _billno = value; }
  55. }
  56. public string EntId
  57. {
  58. get { return _entid; }
  59. set { _entid = value; }
  60. }
  61. public string BillCode
  62. {
  63. get { return _billcode; }
  64. set { _billcode = value; }
  65. }
  66. public string RuleId
  67. {
  68. get { return _ruleid; }
  69. set { _ruleid = value; }
  70. }
  71. public string PayOrgId
  72. {
  73. get { return _payorgid; }
  74. set { _payorgid = value; }
  75. }
  76. public string OrgId
  77. {
  78. get { return _orgid; }
  79. set { _orgid = value; }
  80. }
  81. public string DeptId
  82. {
  83. get { return _deptid; }
  84. set { _deptid = value; }
  85. }
  86. public string caozy
  87. {
  88. get { return _caozy; }
  89. set { _caozy = value; }
  90. }
  91. public string Dates
  92. {
  93. get { return _dates; }
  94. set { _dates = value; }
  95. }
  96. public string OnTime
  97. {
  98. get { return _ontime; }
  99. set { _ontime = value; }
  100. }
  101. public string SysDates
  102. {
  103. get { return _sysdates; }
  104. set { _sysdates = value; }
  105. }
  106. public string RfId
  107. {
  108. get { return _rfid; }
  109. set { _rfid = value; }
  110. }
  111. public string RfType
  112. {
  113. get { return _rftype; }
  114. set { _rftype = value; }
  115. }
  116. [JsonConverter(typeof(BoolConvert), "是,否")]
  117. public string IsSettle
  118. {
  119. get { return _issettle; }
  120. set { _issettle = value; }
  121. }
  122. public decimal jiesje
  123. {
  124. get { return _jiesje; }
  125. set { _jiesje = value; }
  126. }
  127. public decimal Amount
  128. {
  129. get { return _amount; }
  130. set { _amount = value; }
  131. }
  132. public decimal TaxAmount
  133. {
  134. get { return _taxamount; }
  135. set { _taxamount = value; }
  136. }
  137. public decimal Tax
  138. {
  139. get { return _tax; }
  140. set { _tax = value; }
  141. }
  142. public decimal RetailAmt
  143. {
  144. get { return _retailamt; }
  145. set { _retailamt = value; }
  146. }
  147. public string Summaries
  148. {
  149. get { return _summaries; }
  150. set { _summaries = value; }
  151. }
  152. public string SaleManId
  153. {
  154. get { return _salemanid; }
  155. set { _salemanid = value; }
  156. }
  157. public decimal PTaxAmount
  158. {
  159. get { return _ptaxamount; }
  160. set { _ptaxamount = value; }
  161. }
  162. public string StaffName { get => _StaffName; set => _StaffName = value; }
  163. public string Contact { get => _Contact; set => _Contact = value; }
  164. public string K_BillCode { get => _K_BillCode; set => _K_BillCode = value; }
  165. [JsonConverter(typeof(BoolConvert), "是,否")]
  166. public string IsPrepay { get => _IsPrepay; set => _IsPrepay = value; }
  167. public decimal PrepayAmt { get => _PrepayAmt; set => _PrepayAmt = value; }
  168. public string K_djpjzt { get => _K_djpjzt; set => _K_djpjzt = value; }
  169. public List<APGoodsDT> GoodsList { get => _goodsList; set => _goodsList = value; }
  170. public string Remark { get => _Remark; set => _Remark = value; }
  171. public string OppContId { get => _OppContId; set => _OppContId = value; }
  172. public string PayType { get => _PayType; set => _PayType = value; }
  173. public string K_IsApplyP { get => _K_IsApplyP; set => _K_IsApplyP = value; }
  174. public string BusinessName { get => _BusinessName; set => _BusinessName = value; }
  175. public string Source { get => _Source; set => _Source = value; }
  176. public int PBillNo { get => _PBillNo; set => _PBillNo = value; }
  177. public string PBillCode { get => _PBillCode; set => _PBillCode = value; }
  178. }
  179. }