From f3951ba869c515f2b5934f271959a4c086a7394f Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期四, 21 三月 2024 11:04:40 +0800 Subject: [PATCH] 修改党员双报到 列表积分新增筛选 --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java index f6e6ac0..0b2dd31 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java @@ -454,8 +454,10 @@ @RequestParam(value = "page", required = false) Integer page, @RequestParam(value = "size", required = false) Integer size, @RequestParam(value = "belongTo", required = false) String belongTo, - @RequestParam(value = "unitId", required = false) Long unitId) { - return communityService.institutionalUnitServiceAnalysis(year, type, range, communityId, page, size, belongTo, unitId, this.getLoginUserInfo().getAccount()); + @RequestParam(value = "unitId", required = false) Long unitId, + @RequestParam(value = "searchContent",required = false) String searchContent) { + return communityService.institutionalUnitServiceAnalysis(year, type, range, communityId, page, + size, belongTo, unitId, this.getLoginUserInfo().getAccount(),searchContent); } -- Gitblit v1.7.1