|
@@ -44,6 +44,7 @@ public class DcProductServiceImpl implements IDcProductService {
|
|
private DcPsParamMapper dcPsParamMapper;
|
|
private DcPsParamMapper dcPsParamMapper;
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 获取
|
|
* 获取
|
|
* @param id
|
|
* @param id
|
|
@@ -249,6 +250,18 @@ public class DcProductServiceImpl implements IDcProductService {
|
|
return dcProductMapper.selectProductBaseList(params);
|
|
return dcProductMapper.selectProductBaseList(params);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *
|
|
|
|
+ * @param params
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ public int addJson(Map<String,Object> params){
|
|
|
|
+ //产品code
|
|
|
|
+ String productCode = (String) params.get("productCode");
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
* @param params
|
|
* @param params
|
|
@@ -330,7 +343,8 @@ public class DcProductServiceImpl implements IDcProductService {
|
|
public int exportJSON(String context){
|
|
public int exportJSON(String context){
|
|
try{
|
|
try{
|
|
|
|
|
|
- CustomJsonParser.getParamValue(context,"");
|
|
|
|
|
|
+ String dcp_name = CustomJsonParser.getParamValue(context,"OA编码");
|
|
|
|
+ String dcp_oa_code = CustomJsonParser.getParamValue(context,"产品名称");
|
|
|
|
|
|
|
|
|
|
|
|
|