|
|
@@ -95,6 +95,9 @@ public class DistributionCashWithdrawalController extends BaseController {
|
|
|
@Log(title = "打款", businessType = BusinessType.INSERT)
|
|
|
@PostMapping("/rePayCash")
|
|
|
public AjaxResult<Void> rePayCash(@RequestBody DistributionCheckQueryBo bo) {
|
|
|
+ LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
+ bo.setAuditorId(loginUser.getUser().getUserId());
|
|
|
+ bo.setAuditor(SecurityUtils.getUsername());
|
|
|
return toAjax(iDistributionCashWithdrawalService.rePayCash(bo) ? 1 : 0);
|
|
|
}
|
|
|
|