From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 20 五月 2025 23:48:08 +0800
Subject: [PATCH] 修改文件上传类型限制

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java |   22 +++++++++++++++++++---
 1 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java
index 763edf4..2145e69 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java
@@ -266,7 +266,8 @@
 
     @ApiOperation(value = "我的活动", response = ComActActivityVO.class)
     @GetMapping("listactivity")
-    public R listActivity(@RequestParam(value = "status", required = false) Integer status,@RequestParam(value = "type", required = false) Integer type) {
+    public R listActivity(@RequestParam(value = "status", required = false) Integer status,
+                          @RequestParam(value = "type", required = false) Integer type) {
         LoginUserInfoVO loginUserInfo = this.getLoginUserInfo();
         Long userId = loginUserInfo.getUserId();
         Long communityId = loginUserInfo.getCommunityId();
@@ -498,6 +499,21 @@
         return R.ok();
     }
 
+    /**
+     * 获取动作人员详情
+     * @param communityId
+     * @param phone
+     * @return
+     */
+    @ApiOperation(value = "社区工做人员详情")
+    @GetMapping("/getComPbServiceTeamData")
+    public R getComPbServiceTeamData(@RequestParam("communityId") String communityId,
+                                     @RequestParam("phone") String phone)
+    {
+        return partyBuildingService.getComPbServiceTeamData(communityId,phone);
+    }
+
+
     @ApiOperation(value = "获取用户电子档案", response = UserArchivesVO.class)
     @PostMapping("getUserArchives")
     public R getUserArchives() {
@@ -541,8 +557,8 @@
 
     @ApiOperation("查看自己的投诉建议或问题留言记录")
     @GetMapping("myFeedBack")
-    public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type){
-        return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type);
+    public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type,@RequestParam("propertyId")Long propertyId){
+        return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type,propertyId);
     }
 
 }

--
Gitblit v1.7.1