From b827b2710c1f9ac64fe8879f08e1008a8647966a Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期四, 07 七月 2022 13:42:12 +0800 Subject: [PATCH] 大屏数据调整 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDAO.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDAO.java index 37690e9..f53c7b3 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDAO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActDAO.java @@ -73,7 +73,7 @@ + "left join com_street as cs on cs.street_id = ca.street_id\n" + "where ca.community_id = ${communityId}") ComPopulationActVO getPopulationActById(@Param("communityId") Long communityId); - @Select("select `name`,street_id from com_street order by area_code asc") + @Select("select `name`,street_id from com_street where area_code = #{areaCode}") List<StreetAllAppletsVO> getStreetList(String areaCode); @Select("select ca.`name`,ca.street_id,ca.community_id,cs.`name` as streetName from com_act as ca left join com_street as cs on cs.street_id = ca.street_id where ca.state = 0 and ca.street_id = #{streetId}") @@ -92,9 +92,9 @@ "HAVING distance >= 0 and distance <= #{communityDTO.distance} ORDER BY distance ASC") List<CommunitySwitchAllAppletsVO> getCommunityListByNearby(@Param("communityDTO") SearchCommunityDTO communityDTO); - @Select("<script> select community_id,name,lng,lat from com_act where state = 0 <if test='areaCode !=null'> and area_code = #{areaCode} </if> </script>") + @Select("<script> select community_id,name,lng,lat from com_act where state = 0 <if test='areaCode !=null and areaCode !=""'> and area_code = #{areaCode} </if> </script>") List<EventGridCommunityAdminVO> getWestCommunityLists(@Param("areaCode") String areCode); - @Select("select account,plaintext_password as password from com_act where community_id = ${communityId}") + @Select("select account,plaintext_password as password from com_act where community_id = #{communityId}") ComActPasswordVo getCommunityPassword(@Param("communityId") Long communityId); } -- Gitblit v1.7.1