更新-商品属性的选择加载[主线]

This commit is contained in:
季圣华
2017-10-18 00:22:27 +08:00
parent fefaa350a3
commit d42562d9f5
7 changed files with 233 additions and 33 deletions

View File

@@ -76,6 +76,8 @@ public class DepotItemModel implements Serializable
*/
private InputStream excelStream;
private String mpList = ""; //商品属性
public DepotItemShowModel getShowModel() {
return showModel;
}
@@ -371,4 +373,12 @@ public class DepotItemModel implements Serializable
public void setMType(String MType) {
this.MType = MType;
}
public String getMpList() {
return mpList;
}
public void setMpList(String mpList) {
this.mpList = mpList;
}
}

View File

@@ -122,6 +122,8 @@ public class MaterialModel implements Serializable
private String fileName = ""; //文件名称
private InputStream excelStream; //输入流导出excel文件
private String mpList = ""; //商品属性
public MaterialShowModel getShowModel() {
return showModel;
}
@@ -393,4 +395,12 @@ public class MaterialModel implements Serializable
public void setMaterialFile(File materialFile) {
this.materialFile = materialFile;
}
public String getMpList() {
return mpList;
}
public void setMpList(String mpList) {
this.mpList = mpList;
}
}