|
|
@@ -38,11 +38,11 @@ public class BankAccountController {
|
|
|
@ApiOperation("资金账户管理->银行签约-->初始化托管银行")
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/dealAccountSignInit")
|
|
|
@ApiResponse(code = 200, message = "成功", response = AjaxResult.class)
|
|
|
- private AjaxResult<BankCusbankinfo> dealAccountSignInit(Long accountid ,HttpServletRequest request) {
|
|
|
- return iBankAccountSignService.dealAccountSignInit(accountid,request);
|
|
|
+ private AjaxResult<BankCusbankinfo> dealAccountSignInit(Long accountid, HttpServletRequest request) {
|
|
|
+ return iBankAccountSignService.dealAccountSignInit(accountid, request);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("资金账户管理-->处理银行签约")
|
|
|
+ @ApiOperation("资金账户管理-->处理银行签约/签解约管理 -->修改银行签约")
|
|
|
@ApiResponse(code = 200, message = "成功", response = AjaxResult.class)
|
|
|
@RequestMapping(method = RequestMethod.POST, value = "/dealAccountSign")
|
|
|
public AjaxResult dealAccountSign(@RequestBody String param, HttpServletRequest request) {
|
|
|
@@ -55,28 +55,35 @@ public class BankAccountController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("获取签约银行详细信息")
|
|
|
+ @ApiOperation("获取签约银行详细信息/签解约管理 -->获取签约银行详细信息")
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/getSignBankById")
|
|
|
@ApiResponse(code = 200, message = "成功", response = AjaxResult.class)
|
|
|
private AjaxResult<BankAccountsignResult> getSignBankById(String accountcode, String cusbankid, String applyexchticket, HttpServletRequest request) {
|
|
|
return iBankAccountSignService.getSignBankById(accountcode, cusbankid, applyexchticket, request);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("审核")
|
|
|
+ @ApiOperation("签解约管理 --> 审核")
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/audit")
|
|
|
@ApiResponse(code = 200, message = "成功", response = AjaxResult.class)
|
|
|
- private AjaxResult audit(String applyexchticket, Integer Auditflag, String Msg, HttpServletRequest request) {
|
|
|
- return iBankAccountSignService.audit(Auditflag, Msg, applyexchticket, request);
|
|
|
+ private AjaxResult audit(String applyexchticket, Integer auditflag, String Msg, HttpServletRequest request) {
|
|
|
+ return iBankAccountSignService.audit(auditflag, Msg, applyexchticket, request);
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation("银行业务/查询管理-->出入金查询")
|
|
|
+ @ApiOperation("银行业务/查询管理-->出入金查询/出入金审核查询")
|
|
|
@ApiResponse(code = 200, message = "成功", response = PageResult.class)
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/queryPutOrIn")
|
|
|
public PageResult<PutOrInAmountQueryResult> queryPutOrIn(PutOrInAmountQueryParam param, HttpServletRequest request) {
|
|
|
return iBankAccountSignService.queryPutOrIn(param, request);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("出入金审核 --> 审核/复核")
|
|
|
+ @RequestMapping(method = RequestMethod.GET, value = "/accountoutinaudit")
|
|
|
+ @ApiResponse(code = 200, message = "成功", response = AjaxResult.class)
|
|
|
+ private AjaxResult accountoutinaudit(String auditid, Integer auditflag, String msg, HttpServletRequest request) {
|
|
|
+ return iBankAccountSignService.accountoutinaudit(auditid, auditflag, msg, request);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("银行业务/查询管理-->出入金查询详情")
|
|
|
@ApiResponse(code = 200, message = "成功", response = PageResult.class)
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/queryPutOrInDetail")
|