组装、拆卸单的初稿

This commit is contained in:
季圣华
2017-09-20 23:45:24 +08:00
parent 90a9929aa3
commit 814b3839f3
6 changed files with 75 additions and 14 deletions

View File

@@ -30,6 +30,7 @@ public class DepotItemModel implements Serializable
private String OtherField3;
private String OtherField4;
private String OtherField5;
private String MType;
private String Inserted = ""; //json插入记录
private String Deleted = ""; //json删除记录
@@ -362,4 +363,12 @@ public class DepotItemModel implements Serializable
public void setOtherField5(String otherField5) {
OtherField5 = otherField5;
}
public String getMType() {
return MType;
}
public void setMType(String MType) {
this.MType = MType;
}
}