From 1a21c37e2c41236c89e97a33e9da65c5fe7971b6 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期三, 01 六月 2022 18:11:08 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActSocialWorkerDao.java | 19 +++++++++++++++++-- 1 files changed, 17 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..fa8d3fe 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,26 @@ * @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); } -- Gitblit v1.7.1