K_Contactsp.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class K_Contactsp
  8. {
  9. private string _entid;
  10. private string _suppliersid;
  11. private string _contactid;
  12. private string _goodsid;
  13. private decimal _maxpurp;
  14. private decimal _minpurp;
  15. private decimal _k_lastprice;
  16. private string _pushflag;
  17. private int _id;
  18. private decimal _k_price;
  19. private decimal _purp;
  20. private string _GoodsCode;
  21. private string _StaffName;
  22. public K_Contactsp()
  23. {
  24. }
  25. public string EntId
  26. {
  27. get { return _entid; }
  28. set { _entid = value; }
  29. }
  30. public string SuppliersId
  31. {
  32. get { return _suppliersid; }
  33. set { _suppliersid = value; }
  34. }
  35. public string ContactId
  36. {
  37. get { return _contactid; }
  38. set { _contactid = value; }
  39. }
  40. public string GoodsId
  41. {
  42. get { return _goodsid; }
  43. set { _goodsid = value; }
  44. }
  45. public decimal MaxPurp
  46. {
  47. get { return _maxpurp; }
  48. set { _maxpurp = value; }
  49. }
  50. public decimal MinPurp
  51. {
  52. get { return _minpurp; }
  53. set { _minpurp = value; }
  54. }
  55. public decimal K_LastPrice
  56. {
  57. get { return _k_lastprice; }
  58. set { _k_lastprice = value; }
  59. }
  60. public string PushFlag
  61. {
  62. get { return _pushflag; }
  63. set { _pushflag = value; }
  64. }
  65. public int ID
  66. {
  67. get { return _id; }
  68. set { _id = value; }
  69. }
  70. public decimal K_Price
  71. {
  72. get { return _k_price; }
  73. set { _k_price = value; }
  74. }
  75. public decimal PurP
  76. {
  77. get { return _purp; }
  78. set { _purp = value; }
  79. }
  80. private string _goodsName;
  81. private string _SuppliersName;
  82. private string _contact;
  83. private int _IsPush;
  84. public string GoodsName { get => _goodsName; set => _goodsName = value; }
  85. public string SuppliersName { get => _SuppliersName; set => _SuppliersName = value; }
  86. public string Contact { get => _contact; set => _contact = value; }
  87. public int IsPush { get => _IsPush; set => _IsPush = value; }
  88. public string GoodsCode { get => _GoodsCode; set => _GoodsCode = value; }
  89. public string StaffName { get => _StaffName; set => _StaffName = value; }
  90. }
  91. }