Ver código fonte

通过小区名称查询抄表员手机号和小区名称 如果查询多个,按照抄表员手机号进行分组统计 按次数降序排序

王苗苗 3 dias atrás
pai
commit
48b36fa815

+ 3 - 0
slibra-system/src/main/java/com/slibra/business/res/NeighbourAndMeterPhoneResp.java

@@ -34,6 +34,9 @@ public class NeighbourAndMeterPhoneResp implements Serializable {
     @Excel(name = "抄表员电话")
     private String meterReaderPhone;
 
+    //2025年03月31日10:48:01 新增字段,返回的统计数量
+    private int total;
+
 
     public String getMeterReaderPhone() {
         if(StringUtils.isBlank(meterReaderPhone))

+ 18 - 3
slibra-system/src/main/resources/mapper/business/TUserInfoMapper.xml

@@ -201,14 +201,29 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 
 
     <select id="selectNeighbourAndMeterPhoneByNeighbour" resultType="com.slibra.business.res.NeighbourAndMeterPhoneResp">
-        SELECT DISTINCT
+        <!--SELECT DISTINCT
             neighbourhood_name neighbourhoodName,
             meter_reader_phone meterReaderPhone
         FROM
             t_user_info
         WHERE
-            <!-- neighbourhood_name like concat('%', #{asrText}, '%') and del_flag = 0 -->
-        neighbourhood_name = #{asrText} and del_flag = 0
+            &lt;!&ndash; neighbourhood_name like concat('%', #{asrText}, '%') and del_flag = 0 &ndash;&gt;
+        neighbourhood_name = #{asrText} and del_flag = 0-->
+        SELECT
+        meter_reader_phone meterReaderPhone,
+        neighbourhood_name neighbourhoodName,
+        count(*) total
+        FROM
+        t_user_info
+        WHERE
+        neighbourhood_name = #{asrText}
+        and meter_reader_phone is not NULL AND meter_reader_phone != ''
+        and del_flag = 0
+        GROUP BY
+        meter_reader_phone,
+        neighbourhood_name
+        ORDER BY
+        total desc
     </select>
 
     <update id="updateUserPhoneByNo">