123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.slibra.business.mapper.TUserInfoMapper">
-
- <resultMap type="TUserInfo" id="TUserInfoResult">
- <result property="id" column="id" />
- <result property="userNo" column="user_no" />
- <result property="cardNo" column="card_no" />
- <result property="ammeterNo" column="ammeter_no" />
- <result property="name" column="name" />
- <result property="phone" column="phone" />
- <result property="province" column="province" />
- <result property="city" column="city" />
- <result property="country" column="country" />
- <result property="pumpingStationAddress" column="pumping_station_address" />
- <result property="area" column="area" />
- <result property="street" column="street" />
- <result property="neighbourhoodName" column="neighbourhood_name" />
- <result property="buildingNo" column="building_no" />
- <result property="doorNo" column="door_no" />
- <result property="statisticsTime" column="statistics_time" />
- <result property="unpaidFees" column="unpaid_fees" />
- <result property="balanceFees" column="balance_fees" />
- <result property="waterFees" column="water_fees" />
- <result property="meterAmount" column="meter_amount" />
- <result property="meterReader" column="meter_reader" />
- <result property="meterReaderPhone" column="meter_reader_phone" />
- <result property="delFlag" column="del_flag" />
- <result property="revision" column="revision" />
- <result property="createBy" column="create_by" />
- <result property="createTime" column="create_time" />
- <result property="updateBy" column="update_by" />
- <result property="updateTime" column="update_time" />
- <result property="remark" column="remark" />
- </resultMap>
- <sql id="selectTUserInfoVo">
- select id, user_no, card_no, ammeter_no, name, phone, province, city, country, pumping_station_address, area, street, neighbourhood_name, building_no, door_no, statistics_time, unpaid_fees, balance_fees, water_fees, meter_amount, meter_reader, meter_reader_phone, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_user_info
- </sql>
- <select id="selectTUserInfoList" parameterType="TUserInfo" resultMap="TUserInfoResult">
- <include refid="selectTUserInfoVo"/>
- <where>
- 1 = 1
- <if test="userNo != null and userNo != ''"> and user_no = #{userNo}</if>
- <if test="cardNo != null and cardNo != ''"> and card_no = #{cardNo}</if>
- <if test="ammeterNo != null and ammeterNo != ''"> and ammeter_no = #{ammeterNo}</if>
- <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
- <if test="phone != null and phone != ''"> and phone = #{phone}</if>
- <if test="province != null and province != ''"> and province = #{province}</if>
- <if test="city != null and city != ''"> and city = #{city}</if>
- <if test="country != null and country != ''"> and country = #{country}</if>
- <if test="pumpingStationAddress != null and pumpingStationAddress != ''"> and pumping_station_address = #{pumpingStationAddress}</if>
- <if test="area != null and area != ''"> and area = #{area}</if>
- <if test="street != null and street != ''"> and street = #{street}</if>
- <if test="neighbourhoodName != null and neighbourhoodName != ''"> and neighbourhood_name like concat('%', #{neighbourhoodName}, '%')</if>
- <if test="buildingNo != null and buildingNo != ''"> and building_no = #{buildingNo}</if>
- <if test="doorNo != null and doorNo != ''"> and door_no = #{doorNo}</if>
- <if test="statisticsTime != null "> and statistics_time = #{statisticsTime}</if>
- <if test="unpaidFees != null "> and unpaid_fees = #{unpaidFees}</if>
- <if test="balanceFees != null "> and balance_fees = #{balanceFees}</if>
- <if test="waterFees != null "> and water_fees = #{waterFees}</if>
- <if test="meterAmount != null "> and meter_amount = #{meterAmount}</if>
- <if test="meterReader != null and meterReader != ''"> and meter_reader = #{meterReader}</if>
- <if test="meterReaderPhone != null and meterReaderPhone != ''"> and meter_reader_phone = #{meterReaderPhone}</if>
- <if test="revision != null "> and revision = #{revision}</if>
- </where>
- and del_flag = 0 order by id desc
- </select>
-
- <select id="selectTUserInfoById" parameterType="Long" resultMap="TUserInfoResult">
- <include refid="selectTUserInfoVo"/>
- where id = #{id} and del_flag = 0
- </select>
-
- <insert id="insertTUserInfo" parameterType="TUserInfo" useGeneratedKeys="true" keyProperty="id">
- insert into t_user_info
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="userNo != null">user_no,</if>
- <if test="cardNo != null">card_no,</if>
- <if test="ammeterNo != null">ammeter_no,</if>
- <if test="name != null">name,</if>
- <if test="phone != null">phone,</if>
- <if test="province != null">province,</if>
- <if test="city != null">city,</if>
- <if test="country != null">country,</if>
- <if test="pumpingStationAddress != null">pumping_station_address,</if>
- <if test="area != null">area,</if>
- <if test="street != null">street,</if>
- <if test="neighbourhoodName != null">neighbourhood_name,</if>
- <if test="buildingNo != null">building_no,</if>
- <if test="doorNo != null">door_no,</if>
- <if test="statisticsTime != null">statistics_time,</if>
- <if test="unpaidFees != null">unpaid_fees,</if>
- <if test="balanceFees != null">balance_fees,</if>
- <if test="waterFees != null">water_fees,</if>
- <if test="meterAmount != null">meter_amount,</if>
- <if test="meterReader != null">meter_reader,</if>
- <if test="meterReaderPhone != null">meter_reader_phone,</if>
- <if test="delFlag != null">del_flag,</if>
- <if test="revision != null">revision,</if>
- <if test="createBy != null">create_by,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateBy != null">update_by,</if>
- <if test="updateTime != null">update_time,</if>
- <if test="remark != null">remark,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="userNo != null">#{userNo},</if>
- <if test="cardNo != null">#{cardNo},</if>
- <if test="ammeterNo != null">#{ammeterNo},</if>
- <if test="name != null">#{name},</if>
- <if test="phone != null">#{phone},</if>
- <if test="province != null">#{province},</if>
- <if test="city != null">#{city},</if>
- <if test="country != null">#{country},</if>
- <if test="pumpingStationAddress != null">#{pumpingStationAddress},</if>
- <if test="area != null">#{area},</if>
- <if test="street != null">#{street},</if>
- <if test="neighbourhoodName != null">#{neighbourhoodName},</if>
- <if test="buildingNo != null">#{buildingNo},</if>
- <if test="doorNo != null">#{doorNo},</if>
- <if test="statisticsTime != null">#{statisticsTime},</if>
- <if test="unpaidFees != null">#{unpaidFees},</if>
- <if test="balanceFees != null">#{balanceFees},</if>
- <if test="waterFees != null">#{waterFees},</if>
- <if test="meterAmount != null">#{meterAmount},</if>
- <if test="meterReader != null">#{meterReader},</if>
- <if test="meterReaderPhone != null">#{meterReaderPhone},</if>
- <if test="delFlag != null">#{delFlag},</if>
- <if test="revision != null">#{revision},</if>
- <if test="createBy != null">#{createBy},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateBy != null">#{updateBy},</if>
- <if test="updateTime != null">#{updateTime},</if>
- <if test="remark != null">#{remark},</if>
- </trim>
- </insert>
- <update id="updateTUserInfo" parameterType="TUserInfo">
- update t_user_info
- <trim prefix="SET" suffixOverrides=",">
- <if test="userNo != null">user_no = #{userNo},</if>
- <if test="cardNo != null">card_no = #{cardNo},</if>
- <if test="ammeterNo != null">ammeter_no = #{ammeterNo},</if>
- <if test="name != null">name = #{name},</if>
- <if test="phone != null">phone = #{phone},</if>
- <if test="province != null">province = #{province},</if>
- <if test="city != null">city = #{city},</if>
- <if test="country != null">country = #{country},</if>
- <if test="pumpingStationAddress != null">pumping_station_address = #{pumpingStationAddress},</if>
- <if test="area != null">area = #{area},</if>
- <if test="street != null">street = #{street},</if>
- <if test="neighbourhoodName != null">neighbourhood_name = #{neighbourhoodName},</if>
- <if test="buildingNo != null">building_no = #{buildingNo},</if>
- <if test="doorNo != null">door_no = #{doorNo},</if>
- <if test="statisticsTime != null">statistics_time = #{statisticsTime},</if>
- <if test="unpaidFees != null">unpaid_fees = #{unpaidFees},</if>
- <if test="balanceFees != null">balance_fees = #{balanceFees},</if>
- <if test="waterFees != null">water_fees = #{waterFees},</if>
- <if test="meterAmount != null">meter_amount = #{meterAmount},</if>
- <if test="meterReader != null">meter_reader = #{meterReader},</if>
- <if test="meterReaderPhone != null">meter_reader_phone = #{meterReaderPhone},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="revision != null">revision = #{revision},</if>
- <if test="createBy != null">create_by = #{createBy},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateBy != null">update_by = #{updateBy},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="remark != null">remark = #{remark},</if>
- </trim>
- ,revision = revision + 1
- where id = #{id}
- </update>
-
- <delete id="deleteTUserInfoById" parameterType="Long">
- update t_user_info set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
- </delete>
- <delete id="deleteTUserInfoByIds" parameterType="String">
- update t_user_info set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- <!-- 2025年01月08日16:49:50 下面是新增的SQL,不允许删除或者覆盖 -->
- <select id="selectNeighbourAndMeterPhoneByPhone" resultType="com.slibra.business.res.NeighbourAndMeterPhoneResp">
- SELECT DISTINCT
- neighbourhood_name neighbourhoodName,
- meter_reader_phone meterReaderPhone
- FROM
- t_user_info
- WHERE
- phone = #{phone} and del_flag = 0
- </select>
- <select id="selectNeighbourAndMeterPhoneByNeighbour" resultType="com.slibra.business.res.NeighbourAndMeterPhoneResp">
- <!--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-->
- 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">
- update t_user_info set phone = #{phone} where user_no = #{userNo}
- </update>
- <select id="selectTUserInfoListByPhoneOrUserNo" resultMap="TUserInfoResult">
- <include refid="selectTUserInfoVo"/>
- where del_flag = 0 AND (user_no = #{asrText} OR phone = #{asrText})
- </select>
- </mapper>
|