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/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java |   26 ++++++++++++++++++++++++--
 1 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java
index a202646..99361f4 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java
@@ -41,11 +41,33 @@
      * @param type
      * @return
      */
-    Integer selectType(@Param("type") Integer type);
+    Integer selectType(@Param("type") Integer type,@Param("communityId")Long communityId);
 
     /**
      * 社工技能分布查询
      * @return
      */
-    List<BigScreenHmkProjectTypeInfo> selectSkillType();
+    List<BigScreenHmkProjectTypeInfo> selectSkillType(Long communityId);
+
+    /**
+     * 活动社工查询
+     * @param page
+     * @param id
+     * @return
+     */
+    IPage<ComActSocialWorkerVO> selectActivity(Page page,@Param("id") Long id);
+
+    /**
+     * 查询社工详情
+     * @param id
+     * @return
+     */
+    ComActSocialWorkerVO selectOneById(Long id);
+
+    /**
+     * 根据技能id查询社工列表
+     * @param id
+     * @return
+     */
+    List<ComActSocialWorker> selectIncludeSkillWorkerList(@Param("id") Long id);
 }

--
Gitblit v1.7.1