From aedf1a2e260c87a6293443e538ca8651258ee73e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 26 Jan 2021 15:48:05 +0800
Subject: [PATCH] 20210126
---
src/main/java/com/xcong/excoin/modules/documentary/controller/DocumentaryController.java | 74 +++++++++++++++++++++++++++++++++++--
1 files changed, 70 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/documentary/controller/DocumentaryController.java b/src/main/java/com/xcong/excoin/modules/documentary/controller/DocumentaryController.java
index 5a8bc0d..6941e80 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/controller/DocumentaryController.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/controller/DocumentaryController.java
@@ -3,9 +3,11 @@
import java.util.Map;
import javax.validation.Valid;
+import javax.validation.constraints.NotNull;
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;
@@ -14,9 +16,11 @@
import com.xcong.excoin.common.controller.BaseController;
import com.xcong.excoin.common.entity.FebsResponse;
import com.xcong.excoin.common.entity.QueryRequest;
+import com.xcong.excoin.modules.documentary.dto.FollowTraderInfoDto;
import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
+import com.xcong.excoin.modules.documentary.entity.FollowTraderLabelEntity;
import com.xcong.excoin.modules.documentary.service.DocumentaryService;
-import com.xcong.excoin.modules.member.dto.MemberDetailConfirmDto;
+import com.xcong.excoin.modules.systemSetting.entity.PlatformBannerEntity;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
@@ -29,6 +33,46 @@
public class DocumentaryController extends BaseController {
private final DocumentaryService documentaryService;
+
+ /**
+ * 标签---列表
+ * @return
+ */
+ @GetMapping("traderLabelList")
+ public FebsResponse traderLabelList(FollowTraderLabelEntity followTraderLabelEntity, QueryRequest request) {
+ Map<String, Object> data = getDataTable(documentaryService.traderLabelList(followTraderLabelEntity, request));
+ return new FebsResponse().success().data(data);
+ }
+
+ /**
+ * 标签---删除
+ * @return
+ */
+ @GetMapping("traderLabelDelete/{id}")
+ @ControllerEndpoint(operation = "标签---删除", exceptionMessage = "删除失败")
+ public FebsResponse traderLabelDelete(@NotNull(message = "{required}") @PathVariable Long id) {
+ return documentaryService.traderLabelDelete(id);
+ }
+
+ /**
+ * 标签---新增
+ */
+ @PostMapping("followLabelSetAdd")
+ @ControllerEndpoint(operation = "标签---新增", exceptionMessage = "新增失败")
+ public FebsResponse followLabelSetAdd(@Valid FollowTraderLabelEntity followTraderLabelEntity) {
+ documentaryService.followLabelSetAdd(followTraderLabelEntity);
+ return new FebsResponse().success();
+ }
+
+ /**
+ * 标签---修改
+ */
+ @PostMapping("followLabelSetUpdate")
+ @ControllerEndpoint(operation = "标签---修改", exceptionMessage = "修改失败")
+ public FebsResponse followLabelSetUpdate(@Valid FollowTraderLabelEntity followTraderLabelEntity) {
+ documentaryService.followLabelSetUpdate(followTraderLabelEntity);
+ return new FebsResponse().success();
+ }
/**
* 交易员申请---列表
@@ -45,9 +89,31 @@
* @return
*/
@PostMapping("traderConfirm")
- @ControllerEndpoint(operation = "实名认证---确认", exceptionMessage = "认证失败")
- public FebsResponse traderConfirm(@Valid FollowTraderInfoEntity followTraderInfoEntity) {
- return documentaryService.traderConfirm(followTraderInfoEntity);
+ @ControllerEndpoint(operation = "交易员申请---确认", exceptionMessage = "认证失败")
+ public FebsResponse traderConfirm(@Valid FollowTraderInfoDto followTraderInfoDto) {
+ return documentaryService.traderConfirm(followTraderInfoDto);
+ }
+
+ /**
+ * 踢出交易员
+ * @param id
+ * @return
+ */
+ @GetMapping("traderGetOut/{id}")
+ @ControllerEndpoint(operation = "踢出交易员", exceptionMessage = "踢出失败")
+ public FebsResponse traderGetOut(@NotNull(message = "{required}") @PathVariable Long id) {
+ return documentaryService.traderGetOut(id);
+ }
+
+ /**
+ * 设置成【满员】状态
+ * @param id
+ * @return
+ */
+ @GetMapping("traderGetFull/{id}")
+ @ControllerEndpoint(operation = "设置成【满员】状态", exceptionMessage = "设置失败")
+ public FebsResponse traderGetFull(@NotNull(message = "{required}") @PathVariable Long id) {
+ return documentaryService.traderGetFull(id);
}
}
--
Gitblit v1.9.1