优化商品导入功能
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user