From 66925e72f4e0abe2a0c0c1772cc410a6c29b3e31 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 19 May 2021 17:55:25 +0800
Subject: [PATCH] modify

---
 src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java b/src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java
index b4a41ea..9d4605a 100644
--- a/src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java
+++ b/src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java
@@ -32,14 +32,14 @@
     private final OtcEntrustOrderService otcEntrustOrderService;
 
 
-    @ApiOperation(value = "applyMarketBussiness", notes = "申请市商接口")
+//    @ApiOperation(value = "applyMarketBussiness", notes = "申请市商接口")
     @PostMapping(value = "/applyMaketBussiness")
     public Result applyMarketBussiness(@RequestBody MbAddDto mbAddDto) {
         otcMarketBussinessService.add(mbAddDto);
         return Result.ok("申请成功, 等待审核");
     }
 
-    @ApiOperation(value = "modifyMarketBussiness", notes = "修改个人信息")
+//    @ApiOperation(value = "modifyMarketBussiness", notes = "修改个人信息")
     @PostMapping(value = "/modifyMarketBussiness")
     public Result modifyMarketBussiness(@RequestBody MbAddDto mbAddDto) {
         if (mbAddDto.getId() == null) {
@@ -62,12 +62,13 @@
         return Result.ok("修改成功");
     }
 
-    @ApiOperation(value = "findMarketBussinessStatus", notes = "获取市商申请状态接口")
+//    @ApiOperation(value = "findMarketBussinessStatus", notes = "获取市商申请状态接口")
     @GetMapping(value = "/findMarketBussinessStatus")
     public Result findMarketBussinessStatus() {
         return Result.ok("获取成功", otcMarketBussinessService.findMbStatus());
     }
 
+
     @ApiOperation(value = "findMbInfo", notes = "获取市商信息")
     @ApiResponses({
             @ApiResponse(code = 200, message = "获取成功", response = MarketBussinessInfoVo.class)

--
Gitblit v1.9.1