GSRelat.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class GSRelat
  8. {
  9. private string _goodsid;
  10. private string _orgid;
  11. private string _suppliersid;
  12. private string _entid;
  13. private string _contractcode;
  14. private int _priority;
  15. private decimal _exprice;
  16. private decimal _guretailp;
  17. private decimal _purp;
  18. private decimal _purtaxp;
  19. private decimal _dedrate;
  20. private string _isfreeze;
  21. private string _beactive;
  22. private string _apid;
  23. public GSRelat()
  24. {
  25. }
  26. public string GoodsId
  27. {
  28. get { return _goodsid; }
  29. set { _goodsid = value; }
  30. }
  31. public string OrgId
  32. {
  33. get { return _orgid; }
  34. set { _orgid = value; }
  35. }
  36. public string SuppliersId
  37. {
  38. get { return _suppliersid; }
  39. set { _suppliersid = value; }
  40. }
  41. public string EntId
  42. {
  43. get { return _entid; }
  44. set { _entid = value; }
  45. }
  46. public string ContractCode
  47. {
  48. get { return _contractcode; }
  49. set { _contractcode = value; }
  50. }
  51. public int Priority
  52. {
  53. get { return _priority; }
  54. set { _priority = value; }
  55. }
  56. public decimal ExPrice
  57. {
  58. get { return _exprice; }
  59. set { _exprice = value; }
  60. }
  61. public decimal GuRetailP
  62. {
  63. get { return _guretailp; }
  64. set { _guretailp = value; }
  65. }
  66. public decimal PurP
  67. {
  68. get { return _purp; }
  69. set { _purp = value; }
  70. }
  71. public decimal PurTaxP
  72. {
  73. get { return _purtaxp; }
  74. set { _purtaxp = value; }
  75. }
  76. public decimal DedRate
  77. {
  78. get { return _dedrate; }
  79. set { _dedrate = value; }
  80. }
  81. public string IsFreeze
  82. {
  83. get { return _isfreeze; }
  84. set { _isfreeze = value; }
  85. }
  86. public string Beactive
  87. {
  88. get { return _beactive; }
  89. set { _beactive = value; }
  90. }
  91. public string APID
  92. {
  93. get { return _apid; }
  94. set { _apid = value; }
  95. }
  96. }
  97. }