GoodsAttributeEntity.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. /**
  4. * @author Scott
  5. * @email
  6. * @date 2017-08-13 10:41:08
  7. */
  8. public class GoodsAttributeEntity implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. //主键
  11. private Long id;
  12. //商品Id
  13. private Long goodsId;
  14. //属性Id
  15. private Integer attributeId;
  16. //属性值
  17. private String value;
  18. //商品Id
  19. private String goodsName;
  20. //属性Id
  21. private String attributeName;
  22. // 删除标识
  23. private Integer isDelete = 0;
  24. private String merchSn;
  25. private Integer storeId;
  26. public Integer getStoreId() {
  27. return storeId;
  28. }
  29. public void setStoreId(Integer storeId) {
  30. this.storeId = storeId;
  31. }
  32. public String getMerchSn() {
  33. return merchSn;
  34. }
  35. public void setMerchSn(String merchSn) {
  36. this.merchSn = merchSn;
  37. }
  38. public String getGoodsName() {
  39. return goodsName;
  40. }
  41. public void setGoodsName(String goodsName) {
  42. this.goodsName = goodsName;
  43. }
  44. public String getAttributeName() {
  45. return attributeName;
  46. }
  47. public void setAttributeName(String attributeName) {
  48. this.attributeName = attributeName;
  49. }
  50. /**
  51. * 设置:主键
  52. */
  53. public void setId(Long id) {
  54. this.id = id;
  55. }
  56. /**
  57. * 获取:主键
  58. */
  59. public Long getId() {
  60. return id;
  61. }
  62. /**
  63. * 设置:商品Id
  64. */
  65. public void setGoodsId(Long goodsId) {
  66. this.goodsId = goodsId;
  67. }
  68. /**
  69. * 获取:商品Id
  70. */
  71. public Long getGoodsId() {
  72. return goodsId;
  73. }
  74. /**
  75. * 设置:属性Id
  76. */
  77. public void setAttributeId(Integer attributeId) {
  78. this.attributeId = attributeId;
  79. }
  80. /**
  81. * 获取:属性Id
  82. */
  83. public Integer getAttributeId() {
  84. return attributeId;
  85. }
  86. /**
  87. * 设置:属性值
  88. */
  89. public void setValue(String value) {
  90. this.value = value;
  91. }
  92. /**
  93. * 获取:属性值
  94. */
  95. public String getValue() {
  96. return value;
  97. }
  98. public Integer getIsDelete() {
  99. return isDelete;
  100. }
  101. public void setIsDelete(Integer isDelete) {
  102. this.isDelete = isDelete;
  103. }
  104. }