|
@@ -25,6 +25,7 @@ public class Product implements java.io.Serializable{
|
|
|
private String productAbbreviation;
|
|
|
private Integer productDiscount;
|
|
|
private Integer productPrice;
|
|
|
+ private String colorImg;
|
|
|
|
|
|
private Integer productSalesnum;
|
|
|
private Integer productAccessnum;
|
|
@@ -257,6 +258,14 @@ public class Product implements java.io.Serializable{
|
|
|
this.page = page;
|
|
|
}
|
|
|
|
|
|
+ public String getColorImg() {
|
|
|
+ return colorImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColorImg(String colorImg) {
|
|
|
+ this.colorImg = colorImg;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "Product [productId=" + productId + ", productName="
|