springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java
@@ -50,7 +50,7 @@ /** * 社区分组专家 * */ List<ExpertShowVO> selectExpertCommunity(); List<ExpertShowVO> selectExpertCommunity(String appId); /** springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComSanShuoExpertServiceImpl.java
@@ -234,7 +234,7 @@ expertShowVO.setChildList(expertShowVOS1); }else { expertShowVO.setName("村/社区调解站调解专家"); List<ExpertShowVO> expertShowVOS1 = comSanshuoExpertDao.selectExpertCommunity(); List<ExpertShowVO> expertShowVOS1 = comSanshuoExpertDao.selectExpertCommunity(appId); expertShowVO.setChildList(expertShowVOS1); } } springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/ComEventMapper.xml
@@ -536,6 +536,7 @@ select count(t.id) from com_sanshuo_event_info t left join com_sanshuo_expert t1 on t.specialist_id=t1.id where t.event_process_status not in (9) AND t.current_process_type=5 and t1.level=4 AND t.app_id='wx0cef797390444b75' </select> @@ -544,6 +545,7 @@ left join com_sanshuo_expert t1 on t.specialist_id=t1.id where t.event_process_status not in (9) and t1.level=2 AND t.current_process_type=5 AND t.app_id='wx0cef797390444b75' </select> <update id="updateLog"> springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/ComSanshuoExpertDao.xml
@@ -106,7 +106,7 @@ <select id="selectExpertCommunity" resultType="com.panzhihua.common.model.vos.sanshuo.ExpertShowVO"> select count(t.id) as 'count',t1.name,t1.community_id as id,t.level from com_sanshuo_expert t left join com_act t1 on t.community_id=t1.community_id where t.level=4 and t.status=1 and t.del_flag=1 where t.level=4 and t.status=1 and t.del_flag=1 and t.app_id=#{appId} group by t1.name </select> <select id="selectExpertList" resultType="com.panzhihua.service_community.entity.ComSanshuoExpert">