无关风月
2025-04-21 4ee1a284c171fda63c22c000c701f98a05fc55c6
ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/AppFranchiseeController.java
@@ -166,7 +166,7 @@
        }
        return R.ok(franchiseeWithdraw);
    }
    @ApiOperation(value = "管理后台-加盟商提现详情", tags = {"提现"})
    @ApiOperation(value = "管理后台-审核", tags = {"提现"})
    @PostMapping(value = "/auditFranchiseeWithdraw")
    public R auditFranchiseeWithdraw(@RequestBody AuditFranchiseeWithdrawDTO auditFranchiseeWithdrawDTO) {
        LoginUser loginWorker = tokenService.getLoginUser();
@@ -177,6 +177,8 @@
        franchiseeWithdraw.setStatus(auditFranchiseeWithdrawDTO.getStatus());
        franchiseeWithdraw.setResult(auditFranchiseeWithdrawDTO.getResult());
        franchiseeWithdraw.setImg(auditFranchiseeWithdrawDTO.getImg());
        franchiseeWithdraw.setUpdateTime(new Date());
        franchiseeWithdraw.setUpdateBy(loginWorker.getUsername());
        franchiseeWithdrawService.updateById(franchiseeWithdraw);
        return R.ok();
    }