优化商品导入功能

This commit is contained in:
季圣华
2020-06-06 00:14:12 +08:00
parent d9ea28c3c7
commit 748da238ab
3 changed files with 76 additions and 42 deletions

View File

@@ -1,5 +1,7 @@
package com.jsh.erp.datasource.entities;
import com.alibaba.fastjson.JSONObject;
import java.math.BigDecimal;
import java.util.Map;
@@ -7,6 +9,8 @@ public class MaterialWithInitStock extends Material {
private Map<Long, BigDecimal> stockMap;
private JSONObject materialExObj;
public Map<Long, BigDecimal> getStockMap() {
return stockMap;
}
@@ -14,4 +18,12 @@ public class MaterialWithInitStock extends Material {
public void setStockMap(Map<Long, BigDecimal> stockMap) {
this.stockMap = stockMap;
}
public JSONObject getMaterialExObj() {
return materialExObj;
}
public void setMaterialExObj(JSONObject materialExObj) {
this.materialExObj = materialExObj;
}
}