增加商品属性的模块

This commit is contained in:
季圣华
2017-10-16 00:15:18 +08:00
parent d82e3daaec
commit db7052dec0
19 changed files with 898 additions and 5 deletions

View File

@@ -76,6 +76,12 @@ public class MaterialModel implements Serializable
private File materialFile;
private Boolean Enabled = true; //是否启用
private String OtherField1;
private String OtherField2;
private String OtherField3;
/**
* CategoryId
@@ -332,6 +338,30 @@ public class MaterialModel implements Serializable
Enabled = enabled;
}
public String getOtherField1() {
return OtherField1;
}
public void setOtherField1(String otherField1) {
OtherField1 = otherField1;
}
public String getOtherField2() {
return OtherField2;
}
public void setOtherField2(String otherField2) {
OtherField2 = otherField2;
}
public String getOtherField3() {
return OtherField3;
}
public void setOtherField3(String otherField3) {
OtherField3 = otherField3;
}
public String getBrowserType() {
return browserType;
}