123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- /**
- * 商品对应规格表值表
- *
- * @author Scott
- * @email
- * @date 2017-08-15 08:03:40
- */
- public class GoodsSpecificationVo implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键
- private Integer id;
- //商品
- private Integer goods_id;
- //规范Id
- private Integer specification_id;
- //规范说明
- private String value;
- private String name;
- //规范图片
- private String pic_url;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getGoods_id() {
- return goods_id;
- }
- public void setGoods_id(Integer goods_id) {
- this.goods_id = goods_id;
- }
- public Integer getSpecification_id() {
- return specification_id;
- }
- public void setSpecification_id(Integer specification_id) {
- this.specification_id = specification_id;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public String getPic_url() {
- return pic_url;
- }
- public void setPic_url(String pic_url) {
- this.pic_url = pic_url;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|