From afe41e18541607949feaf37dc05c8710e0383b00 Mon Sep 17 00:00:00 2001 From: pf3bvju7e <964441090@qq.com> Date: Sat, 2 Jul 2022 16:45:55 +0800 Subject: [PATCH] Delete 'BaseController.java' --- BaseController.java | 54 --------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 BaseController.java diff --git a/BaseController.java b/BaseController.java deleted file mode 100644 index e0f88e7..0000000 --- a/BaseController.java +++ /dev/null @@ -1,54 +0,0 @@ -package com.yx.controller; - -import com.github.pagehelper.PageInfo; -import com.yx.po.Admin; -import com.yx.po.Notice; -import com.yx.service.AdminService; -import com.yx.service.NoticeService; -import com.yx.service.ReaderInfoService; -import com.yx.utils.DataInfo; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.ui.Model; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; - -import java.util.List; - -@Controller -public class BaseController { - - @Autowired - private NoticeService noticeService; - - /** - * 首页 - * @return - */ - @GetMapping("/index") - public String index(){ - return "index"; - } - - /** - * 欢迎页面跳转 - * @return - */ - @GetMapping("/welcome") - public String welcome(Model model){ - //提供公告信息 - PageInfo pageInfo = noticeService.queryAllNotice(null,1,5); - if (pageInfo!=null){ - List noticeList = pageInfo.getList(); - model.addAttribute("noticeList",noticeList); - } - return "welcome"; - } - - @GetMapping("/updatePassword") - public String updatePwd(){ - return "pwdUpdate/updatePwd"; - } - -}