KKSU
2024-07-08 871acd6b6a92b26f23fe72cf55ef1fcf2ba5a9b7
src/main/java/cc/mrbird/febs/dapp/controller/MemberMoneyFlowController.java
@@ -12,8 +12,8 @@
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -49,7 +49,7 @@
    /**
     * 提现转账列表-同意
     */
    @GetMapping("withdrawAgree/{id}")
    @PostMapping("withdrawAgree/{id}")
    @ControllerEndpoint(operation = "提现转账列表-同意", exceptionMessage = "操作失败")
    public FebsResponse agreeWithdraw(@NotNull(message = "{required}") @PathVariable Long id) {
        return dappWalletService.agreeWithdraw(id);
@@ -58,7 +58,7 @@
    /**
     * 提现转账列表-拒绝
     */
    @GetMapping("withdrawDisAgree/{id}")
    @PostMapping("withdrawDisAgree/{id}")
    @ControllerEndpoint(operation = "提现转账列表-拒绝", exceptionMessage = "操作失败")
    public FebsResponse disagreeWithdraw(@NotNull(message = "{required}") @PathVariable Long id) {
        return dappWalletService.disagreeWithdraw(id);