Commit 38c3bc4d by zxn

修改获取配置返回参数

parent df4c02f2
......@@ -259,9 +259,9 @@ public class IntegrateController {
@PostMapping("/getConfigurations")
@ApiOperation(value = "根据configId获取配置", notes = "getConfigurations", httpMethod = "POST")
public CrmResponseEntity<?> getConfigurations(@RequestBody GetConfigurationInputDTO getConfigurationInputDTO,
public Object getConfigurations(@RequestBody GetConfigurationInputDTO getConfigurationInputDTO,
Errors errors) {
return ResultGenerator.genSuccessResult(integrateService.getConfigInfo(getConfigurationInputDTO));
return integrateService.getConfigInfo(getConfigurationInputDTO);
}
@PostMapping("/GetConfigBySUKINFO")
......
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