|
|
@@ -250,6 +250,12 @@ public class Product {
|
|
|
@Column(name = "pr_cmpimg")
|
|
|
private String img;
|
|
|
|
|
|
+ /**
|
|
|
+ * 封装
|
|
|
+ */
|
|
|
+ @Column(name = "pr_encapsulation")
|
|
|
+ private String encapsulation;
|
|
|
+
|
|
|
/**
|
|
|
* 匹配成标准的日期
|
|
|
*/
|
|
|
@@ -626,6 +632,14 @@ public class Product {
|
|
|
this.img = img;
|
|
|
}
|
|
|
|
|
|
+ public String getEncapsulation() {
|
|
|
+ return encapsulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEncapsulation(String encapsulation) {
|
|
|
+ this.encapsulation = encapsulation;
|
|
|
+ }
|
|
|
+
|
|
|
public Date getTostandard() {
|
|
|
return tostandard;
|
|
|
}
|