From f11e462285c8542a1364c55995434ede9a433b30 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期一, 24 二月 2025 00:08:14 +0800 Subject: [PATCH] 首页接口 --- springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/HomeController.java | 38 +++++++++++++++++++++++++++++++++++--- 1 files changed, 35 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/HomeController.java b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/HomeController.java index d6f809c..fdc0547 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/HomeController.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/HomeController.java @@ -1,12 +1,23 @@ package com.panzhihua.sangeshenbian.controller; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.panzhihua.common.controller.BaseController; +import com.panzhihua.common.model.vos.LoginUserInfoVO; import com.panzhihua.common.model.vos.R; import com.panzhihua.sangeshenbian.model.entity.Banner; +import com.panzhihua.sangeshenbian.model.query.BasePage; +import com.panzhihua.sangeshenbian.model.vo.ComplaintTodoVO; +import com.panzhihua.sangeshenbian.model.vo.MessageNotificationVO; +import com.panzhihua.sangeshenbian.model.vo.PartyCardInfoVO; import com.panzhihua.sangeshenbian.service.IBannerService; +import com.panzhihua.sangeshenbian.service.IComplaintService; +import com.panzhihua.sangeshenbian.service.IMessageNotificationService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @@ -20,12 +31,33 @@ @RequestMapping("/applet/home") @RequiredArgsConstructor @Api(tags = "首页相关接口") -public class HomeController { - private IBannerService bannerService; +public class HomeController extends BaseController { + private final IBannerService bannerService; + private final IMessageNotificationService messageNotificationService; + private final IComplaintService complaintService; @ApiOperation("获取banner列表") @GetMapping("/banner-list") public R<List<Banner>> getBannerList() { return R.ok(bannerService.list()); } - + @GetMapping("/party-card-info") + @ApiOperation("获取党员证信息") + public R<PartyCardInfoVO> getPartyCardInfo() { + LoginUserInfoVO loginUserInfo = getLoginUserInfo(); + PartyCardInfoVO partyCardInfoVO = new PartyCardInfoVO(); + partyCardInfoVO.setName(loginUserInfo.getName()); + partyCardInfoVO.setIdCard(loginUserInfo.getIdCard()); + partyCardInfoVO.setPartyOrganization(loginUserInfo.getCommunityName()); + return R.ok(partyCardInfoVO); + } + @PostMapping("/message") + @ApiOperation("获取消息列表") + public R<Page<MessageNotificationVO>> getMessageList(@RequestBody BasePage page) { + return R.ok(messageNotificationService.getMessageList(page,getUserId())); + } + @PostMapping("/todo-list") + @ApiOperation("获取待办诉求") + public R<Page<ComplaintTodoVO>> getTodoList(@RequestBody BasePage page) { + return R.ok(complaintService.getTodoList(page,getLoginUserInfo())); + } } -- Gitblit v1.7.1