1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
| package com.matrix.eshop.cache.model;
/** * 商品信息 * * @author Administrator * */ public class ProductInfo {
private Long id; private String name; private Double price; private String pictureList; private String specification; private String service; private String color; private String size; private Long shopId;
public ProductInfo() {
}
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public Double getPrice() { return price; }
public void setPrice(Double price) { this.price = price; }
public String getPictureList() { return pictureList; }
public void setPictureList(String pictureList) { this.pictureList = pictureList; }
public String getSpecification() { return specification; }
public void setSpecification(String specification) { this.specification = specification; }
public String getService() { return service; }
public void setService(String service) { this.service = service; }
public String getColor() { return color; }
public void setColor(String color) { this.color = color; }
public String getSize() { return size; }
public void setSize(String size) { this.size = size; }
public Long getShopId() { return shopId; }
public void setShopId(Long shopId) { this.shopId = shopId; }
@Override public String toString() { return "ProductInfo [id=" + id + ", name=" + name + ", price=" + price + ", pictureList=" + pictureList + ", specification=" + specification + ", service=" + service + ", color=" + color + ", size=" + size + ", shopId=" + shopId + "]"; }
}
|