KKSU
2024-06-14 c1991de1c693f5721c7b48b6974caa0d0e515b39
src/main/java/cc/mrbird/febs/dapp/controller/MemberMoneyFlowController.java
@@ -17,7 +17,7 @@
import org.springframework.web.bind.annotation.RestController;
/**
 * @author wzy
 * @author
 * @date 2022-03-22
 **/
@Slf4j
@@ -36,18 +36,6 @@
            dappFundFlowEntity.setCurrentUser(currentUser.getUserId());
        }
        return new FebsResponse().success().data(getDataTable(dappWalletService.fundFlowInPage(dappFundFlowEntity, request)));
    }
    @PostMapping(value = "/withdrawAgree/{id}")
    public FebsResponse withdrawAgree(@PathVariable("id") Long id) {
        dappWalletService.withdrawAgreeOrNot(id, 1);
        return new FebsResponse().success();
    }
    @PostMapping(value = "/withdrawDisAgree/{id}")
    public FebsResponse withdrawDisAgree(@PathVariable("id") Long id) {
        dappWalletService.withdrawAgreeOrNot(id, 2);
        return new FebsResponse().success();
    }
    @RequestMapping(value = "accountMoneyChangeFlow")