给商品增加“规格”字段

This commit is contained in:
季圣华
2017-07-05 23:59:28 +08:00
parent 92dc39c783
commit 06fff5960f
10 changed files with 94 additions and 54 deletions

View File

@@ -17,6 +17,11 @@ public class MaterialModel implements Serializable
* 型号
*/
private String Model = "";
/**
* 规格
*/
private String Standard = "";
/**
* 颜色
@@ -111,7 +116,15 @@ public class MaterialModel implements Serializable
public void setModel(String model) {
Model = model;
}
public String getStandard() {
return Standard;
}
public void setStandard(String standard) {
Standard = standard;
}
public String getColor() {
return Color;
}