|
|
@@ -292,6 +292,17 @@ public class Product {
|
|
|
@Column(name = "pr_isbusiness")
|
|
|
private Short isbusiness;
|
|
|
|
|
|
+ /**
|
|
|
+ * 图片
|
|
|
+ */
|
|
|
+ @Column(name = "pr_cmpimg")
|
|
|
+ private String img;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 包装
|
|
|
+ */
|
|
|
+ @Column(name = "pr_encapsulation")
|
|
|
+ private String encapsulation;
|
|
|
public Product() {
|
|
|
}
|
|
|
|
|
|
@@ -612,4 +623,20 @@ public class Product {
|
|
|
this.isbusiness = isbusiness;
|
|
|
}
|
|
|
|
|
|
+ public String getImg() {
|
|
|
+ return img;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImg(String img) {
|
|
|
+ this.img = img;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEncapsulation() {
|
|
|
+ return encapsulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEncapsulation(String encapsulation) {
|
|
|
+ this.encapsulation = encapsulation;
|
|
|
+ }
|
|
|
+
|
|
|
}
|