GoodsAttributeVo.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * @author Scott
  5. * @email
  6. * @date 2017-08-15 08:03:40
  7. */
  8. public class GoodsAttributeVo implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. //主键
  11. private Integer id;
  12. //商品Id
  13. private Integer goods_id;
  14. //属性Id
  15. private Integer attribute_id;
  16. //属性值
  17. private String value;
  18. // 冗余
  19. private String name;
  20. public Integer getId() {
  21. return id;
  22. }
  23. public void setId(Integer id) {
  24. this.id = id;
  25. }
  26. public Integer getGoods_id() {
  27. return goods_id;
  28. }
  29. public void setGoods_id(Integer goods_id) {
  30. this.goods_id = goods_id;
  31. }
  32. public Integer getAttribute_id() {
  33. return attribute_id;
  34. }
  35. public void setAttribute_id(Integer attribute_id) {
  36. this.attribute_id = attribute_id;
  37. }
  38. public String getValue() {
  39. return value;
  40. }
  41. public void setValue(String value) {
  42. this.value = value;
  43. }
  44. }