From e4d22ad436ee07d3a4388e6585d50be6a495180c Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 26 May 2021 11:48:51 +0800
Subject: [PATCH] 20210525 申诉
---
src/main/java/com/xcong/excoin/modules/otc/controller/OtcMarketBussinessController.java | 8 ++++----
1 files changed, 4 insertions(+), 4 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 7c05a68..019481a 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
@@ -36,10 +36,10 @@
private final MemberDao memberDao;
-// @ApiOperation(value = "applyMarketBussiness", notes = "申请市商接口")
+ @ApiOperation(value = "applyMarketBussiness", notes = "申请市商接口")
@PostMapping(value = "/applyMaketBussiness")
- public Result applyMarketBussiness(@RequestBody MbAddDto mbAddDto) {
- otcMarketBussinessService.add(mbAddDto);
+ public Result applyMarketBussiness() {
+ otcMarketBussinessService.add();
return Result.ok("申请成功, 等待审核");
}
@@ -66,7 +66,7 @@
return Result.ok("修改成功");
}
-// @ApiOperation(value = "findMarketBussinessStatus", notes = "获取市商申请状态接口")
+ @ApiOperation(value = "findMarketBussinessStatus", notes = "获取市商申请状态接口")
@GetMapping(value = "/findMarketBussinessStatus")
public Result findMarketBussinessStatus() {
return Result.ok("获取成功", otcMarketBussinessService.findMbStatus());
--
Gitblit v1.9.1