From 117e0945d9d7c94915c44e74c136d21a8fb17043 Mon Sep 17 00:00:00 2001 From: 罗元桥 <2376770955@qq.com> Date: 星期二, 12 十月 2021 11:18:46 +0800 Subject: [PATCH] Merge branch 'test_bak' into 'master' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActVillageDAO.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActVillageDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActVillageDAO.java index 1529a88..4d503bf 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActVillageDAO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActVillageDAO.java @@ -28,7 +28,8 @@ @Select("select count(id) as houseTotal" + ",(select count(DISTINCT floor) from com_mng_population_house where village_id = #{villageId}) as floorTotal" - + ",(select count(id) from com_mng_population where village_id = #{villageId}) as populationTotal" + + ",(select count(id) from com_mng_population where road = (select alley from com_mng_village where village_id = #{villageId})" + + " and door_no = (select house_num from com_mng_village where village_id = #{villageId})) as populationTotal" + ",(select count(id) from com_mng_car where area_id = #{villageId}) as carTotal" + " from com_mng_population_house where village_id = #{villageId}") ComMngVillageVO getStatisticsCount(@Param("villageId") Long villageId); -- Gitblit v1.7.1