From 12916db6e7946a31f4fbc5c48a27e7769683b034 Mon Sep 17 00:00:00 2001
From: nickchange <126672920+nickchange@users.noreply.github.com>
Date: 星期一, 23 十月 2023 18:25:02 +0800
Subject: [PATCH] 10.23

---
 cloud-server-other/src/main/java/com/dsh/other/controller/BannerController.java |   46 +++++++++++++++++++++++++++++++++-------------
 1 files changed, 33 insertions(+), 13 deletions(-)

diff --git a/cloud-server-other/src/main/java/com/dsh/other/controller/BannerController.java b/cloud-server-other/src/main/java/com/dsh/other/controller/BannerController.java
index bf05b03..a317cf5 100644
--- a/cloud-server-other/src/main/java/com/dsh/other/controller/BannerController.java
+++ b/cloud-server-other/src/main/java/com/dsh/other/controller/BannerController.java
@@ -1,13 +1,11 @@
 package com.dsh.other.controller;
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
-import com.dsh.other.entity.Banner;
-import com.dsh.other.entity.FrequentlyAskedQuestions;
+import com.dsh.other.entity.*;
 import com.dsh.other.feignclient.model.AdvertisementChangeStateDTO;
 import com.dsh.other.feignclient.model.AdvertisementQuery;
-import com.dsh.other.entity.CreateHistoryDto;
-import com.dsh.other.entity.GetHistoryDto;
 import com.dsh.other.model.BannerVo;
+import com.dsh.other.model.dto.siteDto.SelectDto;
 import com.dsh.other.model.vo.questionVo.QuestionSearchVO;
 import com.dsh.other.service.IBannerService;
 import com.dsh.other.util.ResultUtil;
@@ -85,13 +83,32 @@
     public ResultUtil<List<BannerVo>> queryBannerList(Integer position){
         try {
             List<Banner> list = bannerService.list(new QueryWrapper<Banner>().eq("position", position).eq("state", 1).orderByAsc("sort"));
-            List<BannerVo> list1 = new ArrayList<>();
-            for (Banner banner : list) {
-                BannerVo bannerVo = new BannerVo();
-                BeanUtils.copyProperties(banner, bannerVo);
-                list1.add(bannerVo);
-            }
-            return ResultUtil.success(list1);
+
+            List<BannerVo> list2 = bannerService.list1(position);
+
+//            List<BannerVo> list1 = new ArrayList<>();
+//            for (Banner banner : list2) {
+//                BannerVo bannerVo = new BannerVo();
+//                BeanUtils.copyProperties(banner, bannerVo);
+//                list1.add(bannerVo);
+//            }
+            return ResultUtil.success(list2);
+        }catch (Exception e){
+            e.printStackTrace();
+            return ResultUtil.runErr();
+        }
+    }
+
+
+
+
+    @ResponseBody
+    @PostMapping("/base/banner/index")
+    @ApiOperation(value = "获取首页图片", tags = {"获取首页图片"})
+    public ResultUtil querySiteTimes(){
+        try {
+            String result =bannerService.getFirst();
+            return ResultUtil.success(result);
         }catch (Exception e){
             e.printStackTrace();
             return ResultUtil.runErr();
@@ -112,9 +129,12 @@
     @ResponseBody
     @PostMapping("/class/gethisotory")
     public  List<GetHistoryDto> getHistory(@RequestBody Integer studentId){
+        List<GetHistoryDto> list =   bannerService.gethistory(studentId);
 
-      return   bannerService.gethistory(studentId);
-
+        System.out.println("=-======GetHistoryDto========"+list);
+      return   list;
 
     }
+
+
 }

--
Gitblit v1.7.1