Commit cad0c19b by guojuxing

controller添加提现申请

parent a4915921
package com.gic.finance.web.controller;
import com.gic.finance.dto.CashWithdrawalDTO;
import com.gic.finance.qo.CashWithdrawalQueryListQO;
import com.gic.finance.service.CashWithdrawalApiService;
import com.gic.finance.web.vo.CashWithdrawalDetailVO;
......@@ -125,6 +126,11 @@ public class CashWithdrawalController {
return ResultControllerUtils.commonResult(cashWithdrawalApiService.approval(id));
}
@RequestMapping("/save")
public RestResponse save(CashWithdrawalDTO dto) {
return ResultControllerUtils.commonResult(cashWithdrawalApiService.cashWithdrawalOfServiceProvider(dto));
}
/**
* 驳回
* @Title: reject

......
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