PushContactWithGoods.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PushContactWithGoods
  8. {
  9. private string _remark;
  10. private decimal _StoreGapNum;
  11. private decimal _PurchaseTotalNum;
  12. private string _goodsid;
  13. private string _contactid;
  14. private decimal _lastprice;
  15. private int _billno;
  16. private string _businessid;
  17. private string _contact;
  18. private string _contactcode;
  19. private string _mobile;
  20. private string _telephone;
  21. private string _idcard;
  22. private string _userid;
  23. private string _microinfo;
  24. private string _focusmicno;
  25. private string _entid;
  26. private string _businesscode;
  27. private string _businessname;
  28. private string _suppliersid;
  29. private string _goodscode;
  30. private string _goodsname;
  31. private string _goodsspec;
  32. private string _manufacturer;
  33. private string _brandid;
  34. private string _brandname;
  35. private string _AccountPassword;
  36. private decimal _purprice;
  37. private int _k_ContactSpId;
  38. private string _saleManId;
  39. private string _OppContId;
  40. private string _OppContact;
  41. private string _SaleManId;
  42. public PushContactWithGoods()
  43. {
  44. }
  45. public string GoodsId
  46. {
  47. get { return _goodsid; }
  48. set { _goodsid = value; }
  49. }
  50. public string ContactId
  51. {
  52. get { return _contactid; }
  53. set { _contactid = value; }
  54. }
  55. public decimal LastPrice
  56. {
  57. get { return _lastprice; }
  58. set { _lastprice = value; }
  59. }
  60. public int BillNo
  61. {
  62. get { return _billno; }
  63. set { _billno = value; }
  64. }
  65. public string BusinessId
  66. {
  67. get { return _businessid; }
  68. set { _businessid = value; }
  69. }
  70. public string Contact
  71. {
  72. get { return _contact; }
  73. set { _contact = value; }
  74. }
  75. public string ContactCode
  76. {
  77. get { return _contactcode; }
  78. set { _contactcode = value; }
  79. }
  80. public string Mobile
  81. {
  82. get { return _mobile; }
  83. set { _mobile = value; }
  84. }
  85. public string Telephone
  86. {
  87. get { return _telephone; }
  88. set { _telephone = value; }
  89. }
  90. public string IdCard
  91. {
  92. get { return _idcard; }
  93. set { _idcard = value; }
  94. }
  95. public string UserId
  96. {
  97. get { return _userid; }
  98. set { _userid = value; }
  99. }
  100. public string MicroInfo
  101. {
  102. get { return _microinfo; }
  103. set { _microinfo = value; }
  104. }
  105. public string FocusMicNo
  106. {
  107. get { return _focusmicno; }
  108. set { _focusmicno = value; }
  109. }
  110. public string EntId
  111. {
  112. get { return _entid; }
  113. set { _entid = value; }
  114. }
  115. public string BusinessCode
  116. {
  117. get { return _businesscode; }
  118. set { _businesscode = value; }
  119. }
  120. public string BusinessName
  121. {
  122. get { return _businessname; }
  123. set { _businessname = value; }
  124. }
  125. public string SuppliersId
  126. {
  127. get { return _suppliersid; }
  128. set { _suppliersid = value; }
  129. }
  130. public string GoodsCode
  131. {
  132. get { return _goodscode; }
  133. set { _goodscode = value; }
  134. }
  135. public string GoodsName
  136. {
  137. get { return _goodsname; }
  138. set { _goodsname = value; }
  139. }
  140. public string GoodsSpec
  141. {
  142. get { return _goodsspec; }
  143. set { _goodsspec = value; }
  144. }
  145. public string Manufacturer
  146. {
  147. get { return _manufacturer; }
  148. set { _manufacturer = value; }
  149. }
  150. public string BrandId
  151. {
  152. get { return _brandid; }
  153. set { _brandid = value; }
  154. }
  155. public string BrandName
  156. {
  157. get { return _brandname; }
  158. set { _brandname = value; }
  159. }
  160. public string Remark { get => _remark; set => _remark = value; }
  161. public decimal PurchaseTotalNum { get => _PurchaseTotalNum; set => _PurchaseTotalNum = value; }
  162. public decimal StoreGapNum { get => _StoreGapNum; set => _StoreGapNum = value; }
  163. public string AccountPassword { get => _AccountPassword; set => _AccountPassword = value; }
  164. public decimal PurPrice { get => _purprice; set => _purprice = value; }
  165. public int K_ContactSpId { get => _k_ContactSpId; set => _k_ContactSpId = value; }
  166. public string SaleManId { get => _saleManId; set => _saleManId = value; }
  167. public string OppContId { get => _OppContId; set => _OppContId = value; }
  168. public string OppContact { get => _OppContact; set => _OppContact = value; }
  169. public override string ToString()
  170. {
  171. return this.ContactId;
  172. }
  173. }
  174. }