From 8fe3f13ba49320316ffa37b8ed4a7ca05b339540 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Sat, 17 Sep 2022 22:00:50 +0800
Subject: [PATCH] fix

---
 src/main/java/cc/mrbird/febs/dapp/controller/ApiCommonController.java |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/dapp/controller/ApiCommonController.java b/src/main/java/cc/mrbird/febs/dapp/controller/ApiCommonController.java
index 3aafa7e..be51d3a 100644
--- a/src/main/java/cc/mrbird/febs/dapp/controller/ApiCommonController.java
+++ b/src/main/java/cc/mrbird/febs/dapp/controller/ApiCommonController.java
@@ -51,21 +51,14 @@
     @ApiOperation(value = "链接接口", notes = "链接接口")
     @PostMapping(value = "/connect")
     public FebsResponse connect(@RequestBody ConnectDto connectDto) {
-        dappMemberService.connect(connectDto);
-        return new FebsResponse().success();
+//        dappMemberService.connect(connectDto);
+        return new FebsResponse().fail("暂无法连接");
     }
 
     @ApiOperation(value = "头部数据", notes = "头部数据")
     @GetMapping(value = "/totalIncome")
     public FebsResponse totalIncome() {
         return new FebsResponse().success().data(dappSystemService.findTotalInComeAndList());
-    }
-
-
-    @ApiOperation(value = "价格", notes = "价格")
-    @GetMapping(value = "/price")
-    public FebsResponse price() {
-        return new FebsResponse().success().data(dappSystemService.findPriceListIn24H());
     }
 
     @PostMapping(value = "/encrypt")

--
Gitblit v1.9.1