|
|
|
@ -24,10 +24,10 @@ import java.util.Map;
|
|
|
|
|
@RestController
|
|
|
|
|
@RequestMapping({"/papi/secondev/workflow/controller" })
|
|
|
|
|
public class ZOA_MM_MA_DUPLICATE_CONTROLLER {
|
|
|
|
|
@GetMapping("/ZOA_FICO_COC_CHECK")
|
|
|
|
|
@GetMapping("/ZOA_MM_MA_DUPLICATE")
|
|
|
|
|
public WeaResult<String> run(@RequestParam Map<String,Object> params) {
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_ACTION execute start");
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_ACTION execute params : " + params);
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_CONTROLLER execute start");
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_CONTROLLER execute params : " + params);
|
|
|
|
|
try {
|
|
|
|
|
String index = null2String(params.get("index"));
|
|
|
|
|
String wlzbh = null2String(params.get("wlzbh"));
|
|
|
|
@ -185,8 +185,8 @@ public class ZOA_MM_MA_DUPLICATE_CONTROLLER {
|
|
|
|
|
result.put("item", item);
|
|
|
|
|
return WeaResult.success(JSONObject.toJSONString(result));
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_ACTION execute error",e);
|
|
|
|
|
return WeaResult.fail(500, "ZOA_MM_MA_DUPLICATE_ACTION execute error " +e, e);
|
|
|
|
|
log.error("ZOA_MM_MA_DUPLICATE_CONTROLLER execute error",e);
|
|
|
|
|
return WeaResult.fail(500, "ZOA_MM_MA_DUPLICATE_CONTROLLER execute error " +e, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|