Commit ac21204b by 胡懿

台账中修改货架、仓库字段

parent 8585e0c0
...@@ -41,6 +41,8 @@ public class LedgerInfo extends DataEntity<LedgerInfo> { ...@@ -41,6 +41,8 @@ public class LedgerInfo extends DataEntity<LedgerInfo> {
private List<Shelves> shelvesList; private List<Shelves> shelvesList;
private List<Warehouse> warehouseList; private List<Warehouse> warehouseList;
private Shelves shelves;
public LedgerInfo() { public LedgerInfo() {
super(); super();
} }
...@@ -172,4 +174,12 @@ public class LedgerInfo extends DataEntity<LedgerInfo> { ...@@ -172,4 +174,12 @@ public class LedgerInfo extends DataEntity<LedgerInfo> {
public void setWarehouseList(List<Warehouse> warehouseList) { public void setWarehouseList(List<Warehouse> warehouseList) {
this.warehouseList = warehouseList; this.warehouseList = warehouseList;
} }
public Shelves getShelves() {
return shelves;
}
public void setShelves(Shelves shelves) {
this.shelves = shelves;
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment