|
@@ -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
|
|
|
+ <!– neighbourhood_name like concat('%', #{asrText}, '%') and del_flag = 0 –>
|
|
|
+ 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">
|