From aa2f32ff62700f7602ac19fdce93a156fc2dd447 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Fri, 24 Nov 2023 11:00:17 +0800
Subject: [PATCH] 匹配
---
src/main/java/cc/mrbird/febs/mall/controller/AdminNewsInfoController.java | 167 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 165 insertions(+), 2 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/mall/controller/AdminNewsInfoController.java b/src/main/java/cc/mrbird/febs/mall/controller/AdminNewsInfoController.java
index 3240f05..3cfe34a 100644
--- a/src/main/java/cc/mrbird/febs/mall/controller/AdminNewsInfoController.java
+++ b/src/main/java/cc/mrbird/febs/mall/controller/AdminNewsInfoController.java
@@ -4,16 +4,24 @@
import cc.mrbird.febs.common.controller.BaseController;
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
-import cc.mrbird.febs.mall.dto.MallNewsInfoDto;
-import cc.mrbird.febs.mall.entity.MallNewsInfo;
+import cc.mrbird.febs.common.enumerates.DataDictionaryEnum;
+import cc.mrbird.febs.common.enumerates.ProductEnum;
+import cc.mrbird.febs.mall.dto.*;
+import cc.mrbird.febs.mall.entity.*;
+import cc.mrbird.febs.mall.mapper.MallProductNftMapper;
+import cc.mrbird.febs.mall.service.ICommonService;
import cc.mrbird.febs.mall.service.IMallNewsInfoService;
+import cc.mrbird.febs.mall.vo.AdminMallProductNftVo;
+import cc.mrbird.febs.mall.vo.AdminMallProductSellPickVo;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
+import javax.management.Query;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
+import java.util.List;
import java.util.Map;
/**
@@ -28,6 +36,115 @@
public class AdminNewsInfoController extends BaseController {
private final IMallNewsInfoService mallNewsInfoService;
+ private final MallProductNftMapper mallProductNftMapper;
+ private final ICommonService commonService;
+
+ /**
+ * NFT预约产品
+ */
+ @GetMapping("getProductNFTList")
+ public FebsResponse getProductNFTList(MallProductNft mallProductNft, QueryRequest request) {
+ Map<String, Object> data = getDataTable(mallNewsInfoService.getProductNFTList(mallProductNft, request));
+ return new FebsResponse().success().data(data);
+ }
+
+ /**
+ * NFT预约产品-新增
+ */
+ @PostMapping("addProductNFT")
+ @ControllerEndpoint(operation = "NFT预约产品-新增", exceptionMessage = "操作失败")
+ public FebsResponse addProductNFT(@Valid AdminMallProductNftDto adminMallProductNftDto) {
+ return mallNewsInfoService.addProductNFT(adminMallProductNftDto);
+ }
+
+ @PostMapping(value = "/upNFT/{id}")
+ public FebsResponse upNFT(@PathVariable Long id) {
+ MallProductNft mallProductNft = mallProductNftMapper.selectById(id);
+ mallProductNft.setState(ProductEnum.PRODUCT_NFT_OPEN.getValue());
+ mallProductNftMapper.updateById(mallProductNft);
+ return new FebsResponse().success();
+ }
+
+ @PostMapping(value = "/unUpNFT/{id}")
+ public FebsResponse unUpNFT(@PathVariable Long id) {
+ MallProductNft mallProductNft = mallProductNftMapper.selectById(id);
+ mallProductNft.setState(ProductEnum.PRODUCT_NFT_CLOSE.getValue());
+ mallProductNftMapper.updateById(mallProductNft);
+ return new FebsResponse().success();
+ }
+
+ /**
+ * NFT预约产品-删除
+ */
+ @GetMapping("delNFT/{id}")
+ @ControllerEndpoint(operation = " 新闻中心-删除", exceptionMessage = "操作失败")
+ public FebsResponse delNFT(@NotNull(message = "{required}") @PathVariable Long id) {
+ return mallNewsInfoService.delNFT(id);
+ }
+
+ /**
+ * NFT预约产品-更新
+ */
+ @PostMapping("nftInfoUpdate")
+ @ControllerEndpoint(operation = "NFT预约产品-更新", exceptionMessage = "操作失败")
+ public FebsResponse nftInfoUpdate(@Valid MallProductNft mallProductNft) {
+ return mallNewsInfoService.nftInfoUpdate(mallProductNft);
+ }
+
+ /**
+ * 用户NFT预约列表
+ */
+ @GetMapping("getBuyList")
+ public FebsResponse getBuyList(MallProductBuy mallProductBuy, QueryRequest request) {
+ Map<String, Object> data = getDataTable(mallNewsInfoService.getBuyList(mallProductBuy, request));
+ return new FebsResponse().success().data(data);
+ }
+
+ /**
+ * 用户NFT提现列表
+ */
+ @GetMapping("getSellList")
+ public FebsResponse getSellList(MallProductSell mallProductSell, QueryRequest request) {
+ Map<String, Object> data = getDataTable(mallNewsInfoService.getSellList(mallProductSell, request));
+ return new FebsResponse().success().data(data);
+ }
+
+ /**
+ * 用户NFT提现-匹配提现用户列表
+ * @return
+ */
+ @GetMapping(value = "findSellList")
+ public FebsResponse findSellList() {
+ List<AdminMallProductSellPickVo> categories = mallNewsInfoService.findSellList();
+ return new FebsResponse().success().data(categories);
+ }
+
+ /**
+ * 用户NFT提现-手动分配
+ */
+ @PostMapping("pickSellRecord")
+ @ControllerEndpoint(operation = "用户NFT提现-手动分配", exceptionMessage = "操作失败")
+ public FebsResponse pickSellRecord(@Valid AdminPickSellRecordDtoDto pickSellRecordDto) {
+ return mallNewsInfoService.pickSellRecord(pickSellRecordDto);
+ }
+
+ /**
+ * 基础设置
+ * @param gfaBasicSetDto
+ * @return
+ */
+ @PostMapping(value = "/gfaBasicSet")
+ public FebsResponse gfaBasicSet(AdminGfaBasicSetDto gfaBasicSetDto) {
+ commonService.updateDataDic(
+ DataDictionaryEnum.YU_YUE_START_TIME.getType(),
+ DataDictionaryEnum.YU_YUE_START_TIME.getCode(),
+ gfaBasicSetDto.getStartTime());
+ commonService.updateDataDic(
+ DataDictionaryEnum.YU_YUE_END_TIME.getType(),
+ DataDictionaryEnum.YU_YUE_END_TIME.getCode(),
+ gfaBasicSetDto.getEndTime());
+ return new FebsResponse().success();
+ }
/**
* 新闻中心-列表
@@ -68,4 +185,50 @@
return mallNewsInfoService.updateNewsInfo(mallNewsInfoDto);
}
+
+ @GetMapping("findNewsCategoryList")
+ @ControllerEndpoint(operation = "新闻分类列表", exceptionMessage = "获取失败")
+ public FebsResponse findNewsCategoryList(MallNewsCategory mallNewsCategory, QueryRequest request) {
+ return new FebsResponse().success().data(getDataTable(mallNewsInfoService.findNewsCategoryInPage(mallNewsCategory, request)));
+ }
+
+ @PostMapping("addOrModifyNewsCategory")
+ @ControllerEndpoint(operation = "新闻分类", exceptionMessage = "新增失败")
+ public FebsResponse addOrModifyNewsCategory(MallNewsCategory mallNewsCategory) {
+ mallNewsInfoService.addOrModifyNewsCategory(mallNewsCategory);
+ return new FebsResponse().success().message("新增成功");
+ }
+
+ /**
+ * 新闻分类-删除
+ */
+ @GetMapping("delNewsCategoryInfo/{id}")
+ @ControllerEndpoint(operation = "新闻分类-删除", exceptionMessage = "操作失败")
+ public FebsResponse delNewsCategoryInfo(@NotNull(message = "{required}") @PathVariable Long id) {
+ return mallNewsInfoService.delNewsCategoryInfo(id);
+ }
+
+ @GetMapping(value = "findAllCategoryList")
+ public FebsResponse findAllCategoryList() {
+ List<MallNewsCategory> categories = mallNewsInfoService.findAllCategory();
+ return new FebsResponse().success().data(categories);
+ }
+
+ @PostMapping(value = "/topNews/{id}")
+ public FebsResponse topNews(@PathVariable Long id) {
+ MallNewsInfo mallNewsInfo = new MallNewsInfo();
+ mallNewsInfo.setIsTop(1);
+ mallNewsInfo.setId(id);
+ mallNewsInfoService.updateById(mallNewsInfo);
+ return new FebsResponse().success();
+ }
+
+ @PostMapping(value = "/unTopNews/{id}")
+ public FebsResponse unTopNews(@PathVariable Long id) {
+ MallNewsInfo mallNewsInfo = new MallNewsInfo();
+ mallNewsInfo.setIsTop(2);
+ mallNewsInfo.setId(id);
+ mallNewsInfoService.updateById(mallNewsInfo);
+ return new FebsResponse().success();
+ }
}
--
Gitblit v1.9.1