|
@@ -52,6 +52,8 @@ public class Product implements java.io.Serializable{
|
|
|
// 5:青色 6:蓝色 7:紫色 8:白色
|
|
|
private ProductType productType; //商品类型
|
|
|
|
|
|
+ private String productChildType; //产品关联小类
|
|
|
+
|
|
|
private Integer productChoiceness; //精选类型0:非精选1:精选置顶2:精选排后
|
|
|
|
|
|
private String productChoicenessIm; //精选图片
|
|
@@ -281,6 +283,14 @@ public class Product implements java.io.Serializable{
|
|
|
this.productChoicenessIm = productChoicenessIm;
|
|
|
}
|
|
|
|
|
|
+ public String getProductChildType() {
|
|
|
+ return productChildType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductChildType(String productChildType) {
|
|
|
+ this.productChildType = productChildType;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "Product [productId=" + productId + ", productName="
|