1
0

GoodsAttributeEntity.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. public String getMerchSn() {
  26. return merchSn;
  27. }
  28. public void setMerchSn(String merchSn) {
  29. this.merchSn = merchSn;
  30. }
  31. public String getGoodsName() {
  32. return goodsName;
  33. }
  34. public void setGoodsName(String goodsName) {
  35. this.goodsName = goodsName;
  36. }
  37. public String getAttributeName() {
  38. return attributeName;
  39. }
  40. public void setAttributeName(String attributeName) {
  41. this.attributeName = attributeName;
  42. }
  43. /**
  44. * 设置:主键
  45. */
  46. public void setId(Long id) {
  47. this.id = id;
  48. }
  49. /**
  50. * 获取:主键
  51. */
  52. public Long getId() {
  53. return id;
  54. }
  55. /**
  56. * 设置:商品Id
  57. */
  58. public void setGoodsId(Long goodsId) {
  59. this.goodsId = goodsId;
  60. }
  61. /**
  62. * 获取:商品Id
  63. */
  64. public Long getGoodsId() {
  65. return goodsId;
  66. }
  67. /**
  68. * 设置:属性Id
  69. */
  70. public void setAttributeId(Integer attributeId) {
  71. this.attributeId = attributeId;
  72. }
  73. /**
  74. * 获取:属性Id
  75. */
  76. public Integer getAttributeId() {
  77. return attributeId;
  78. }
  79. /**
  80. * 设置:属性值
  81. */
  82. public void setValue(String value) {
  83. this.value = value;
  84. }
  85. /**
  86. * 获取:属性值
  87. */
  88. public String getValue() {
  89. return value;
  90. }
  91. public Integer getIsDelete() {
  92. return isDelete;
  93. }
  94. public void setIsDelete(Integer isDelete) {
  95. this.isDelete = isDelete;
  96. }
  97. }