GoodsSpecificationVo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 商品对应规格表值表
  5. *
  6. * @author Scott
  7. * @email
  8. * @date 2017-08-15 08:03:40
  9. */
  10. public class GoodsSpecificationVo implements Serializable {
  11. private static final long serialVersionUID = 1L;
  12. //主键
  13. private Integer id;
  14. //商品
  15. private Integer goods_id;
  16. //规范Id
  17. private Integer specification_id;
  18. //规范说明
  19. private String value;
  20. private String name;
  21. //规范图片
  22. private String pic_url;
  23. public Integer getId() {
  24. return id;
  25. }
  26. public void setId(Integer id) {
  27. this.id = id;
  28. }
  29. public Integer getGoods_id() {
  30. return goods_id;
  31. }
  32. public void setGoods_id(Integer goods_id) {
  33. this.goods_id = goods_id;
  34. }
  35. public Integer getSpecification_id() {
  36. return specification_id;
  37. }
  38. public void setSpecification_id(Integer specification_id) {
  39. this.specification_id = specification_id;
  40. }
  41. public String getValue() {
  42. return value;
  43. }
  44. public void setValue(String value) {
  45. this.value = value;
  46. }
  47. public String getPic_url() {
  48. return pic_url;
  49. }
  50. public void setPic_url(String pic_url) {
  51. this.pic_url = pic_url;
  52. }
  53. public String getName() {
  54. return name;
  55. }
  56. public void setName(String name) {
  57. this.name = name;
  58. }
  59. }