进销存列表默认查询全部仓库的数据

This commit is contained in:
季圣华
2017-06-22 23:44:31 +08:00
parent 76017fb1eb
commit 76cdbdfb4e
3 changed files with 43 additions and 21 deletions

View File

@@ -11,6 +11,7 @@ public class DepotHeadModel implements Serializable
private String Type = "";
private String SubType = "";
private Long ProjectId;
private String DepotIds = "";
private String Number = "";
private String OperPersonName = "";
private String OperTime;
@@ -85,6 +86,14 @@ public class DepotHeadModel implements Serializable
ProjectId = projectId;
}
public String getDepotIds() {
return DepotIds;
}
public void setDepotIds(String depotIds) {
DepotIds = depotIds;
}
public String getNumber() {
return Number;
}