Commit 1c740e30 authored by liwenbin's avatar liwenbin

fix

parent 9c9827c0
...@@ -30,8 +30,6 @@ public class FundModuleController { ...@@ -30,8 +30,6 @@ public class FundModuleController {
@Autowired @Autowired
private IFundModuleService fundModuleService; private IFundModuleService fundModuleService;
@Autowired
private IApprovalLogService approvalLogService;
@RequestMapping("/get_all_funds") @RequestMapping("/get_all_funds")
public GlobalResponse getAllFunds() { public GlobalResponse getAllFunds() {
...@@ -52,7 +50,7 @@ public class FundModuleController { ...@@ -52,7 +50,7 @@ public class FundModuleController {
@RequestMapping("save_channel_funds_config") @RequestMapping("save_channel_funds_config")
public GlobalResponse saveChannelFundsConfig(Integer type, Long id, String bizChannel, String funds, String remarks, public GlobalResponse saveChannelFundsConfig(Integer type, Long id, String bizChannel, String funds, String remarks,
String auditor, String proposer) { String auditor, String proposer) {
log.info("资方模块接口, 新增或修改资方配置开始, type : {}, id : {}, bizChannel : {}, funds : {}, remarks : {}", type, id, bizChannel, funds, remarks); log.info("资方模块接口, 新增或修改资方配置开始, type : {}, id : {}, bizChannel : {}, funds : {}, remarks : {}, auditor : {}, proposer : {}", type, id, bizChannel, funds, remarks, auditor, proposer);
// 参数校验 // 参数校验
if (type == null) { if (type == null) {
return GlobalResponse.create(FundModuleResponse.TYPE_IS_EMPTY); return GlobalResponse.create(FundModuleResponse.TYPE_IS_EMPTY);
...@@ -77,8 +75,8 @@ public class FundModuleController { ...@@ -77,8 +75,8 @@ public class FundModuleController {
} }
Stopwatch stopwatch = Stopwatch.createStarted(); Stopwatch stopwatch = Stopwatch.createStarted();
GlobalResponse response = fundModuleService.saveChannelFundConfig(type, id, bizChannel, funds, remarks, auditor, proposer); GlobalResponse response = fundModuleService.saveChannelFundConfig(type, id, bizChannel, funds, remarks, auditor, proposer);
log.info("资方模块接口, 新增或修改资方配置结束, type : {}, id : {}, bizChannel : {}, funds : {}, remarks : {}, 耗时 : {}, reponse : {}", type, id, bizChannel, funds, remarks, stopwatch.stop().elapsed(TimeUnit.MILLISECONDS), JSON.toJSONString(response)); log.info("资方模块接口, 新增或修改资方配置结束, type : {}, id : {}, bizChannel : {}, funds : {}, remarks : {}, auditor : {}, proposer : {}, 耗时 : {}, reponse : {}", type, id, bizChannel, funds, remarks, auditor, proposer, stopwatch.stop().elapsed(TimeUnit.MILLISECONDS), JSON.toJSONString(response));
return null; return response;
} }
@RequestMapping("/get_channel_fund_configs") @RequestMapping("/get_channel_fund_configs")
......
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