TUserInfoMapper.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.slibra.business.mapper.TUserInfoMapper">
  6. <resultMap type="TUserInfo" id="TUserInfoResult">
  7. <result property="id" column="id" />
  8. <result property="userNo" column="user_no" />
  9. <result property="cardNo" column="card_no" />
  10. <result property="ammeterNo" column="ammeter_no" />
  11. <result property="name" column="name" />
  12. <result property="phone" column="phone" />
  13. <result property="province" column="province" />
  14. <result property="city" column="city" />
  15. <result property="country" column="country" />
  16. <result property="pumpingStationAddress" column="pumping_station_address" />
  17. <result property="area" column="area" />
  18. <result property="street" column="street" />
  19. <result property="neighbourhoodName" column="neighbourhood_name" />
  20. <result property="buildingNo" column="building_no" />
  21. <result property="doorNo" column="door_no" />
  22. <result property="statisticsTime" column="statistics_time" />
  23. <result property="unpaidFees" column="unpaid_fees" />
  24. <result property="balanceFees" column="balance_fees" />
  25. <result property="waterFees" column="water_fees" />
  26. <result property="meterAmount" column="meter_amount" />
  27. <result property="meterReader" column="meter_reader" />
  28. <result property="meterReaderPhone" column="meter_reader_phone" />
  29. <result property="delFlag" column="del_flag" />
  30. <result property="revision" column="revision" />
  31. <result property="createBy" column="create_by" />
  32. <result property="createTime" column="create_time" />
  33. <result property="updateBy" column="update_by" />
  34. <result property="updateTime" column="update_time" />
  35. <result property="remark" column="remark" />
  36. </resultMap>
  37. <sql id="selectTUserInfoVo">
  38. 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
  39. </sql>
  40. <select id="selectTUserInfoList" parameterType="TUserInfo" resultMap="TUserInfoResult">
  41. <include refid="selectTUserInfoVo"/>
  42. <where>
  43. 1 = 1
  44. <if test="userNo != null and userNo != ''"> and user_no = #{userNo}</if>
  45. <if test="cardNo != null and cardNo != ''"> and card_no = #{cardNo}</if>
  46. <if test="ammeterNo != null and ammeterNo != ''"> and ammeter_no = #{ammeterNo}</if>
  47. <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
  48. <if test="phone != null and phone != ''"> and phone = #{phone}</if>
  49. <if test="province != null and province != ''"> and province = #{province}</if>
  50. <if test="city != null and city != ''"> and city = #{city}</if>
  51. <if test="country != null and country != ''"> and country = #{country}</if>
  52. <if test="pumpingStationAddress != null and pumpingStationAddress != ''"> and pumping_station_address = #{pumpingStationAddress}</if>
  53. <if test="area != null and area != ''"> and area = #{area}</if>
  54. <if test="street != null and street != ''"> and street = #{street}</if>
  55. <if test="neighbourhoodName != null and neighbourhoodName != ''"> and neighbourhood_name like concat('%', #{neighbourhoodName}, '%')</if>
  56. <if test="buildingNo != null and buildingNo != ''"> and building_no = #{buildingNo}</if>
  57. <if test="doorNo != null and doorNo != ''"> and door_no = #{doorNo}</if>
  58. <if test="statisticsTime != null "> and statistics_time = #{statisticsTime}</if>
  59. <if test="unpaidFees != null "> and unpaid_fees = #{unpaidFees}</if>
  60. <if test="balanceFees != null "> and balance_fees = #{balanceFees}</if>
  61. <if test="waterFees != null "> and water_fees = #{waterFees}</if>
  62. <if test="meterAmount != null "> and meter_amount = #{meterAmount}</if>
  63. <if test="meterReader != null and meterReader != ''"> and meter_reader = #{meterReader}</if>
  64. <if test="meterReaderPhone != null and meterReaderPhone != ''"> and meter_reader_phone = #{meterReaderPhone}</if>
  65. <if test="revision != null "> and revision = #{revision}</if>
  66. </where>
  67. and del_flag = 0 order by id desc
  68. </select>
  69. <select id="selectTUserInfoById" parameterType="Long" resultMap="TUserInfoResult">
  70. <include refid="selectTUserInfoVo"/>
  71. where id = #{id} and del_flag = 0
  72. </select>
  73. <insert id="insertTUserInfo" parameterType="TUserInfo" useGeneratedKeys="true" keyProperty="id">
  74. insert into t_user_info
  75. <trim prefix="(" suffix=")" suffixOverrides=",">
  76. <if test="userNo != null">user_no,</if>
  77. <if test="cardNo != null">card_no,</if>
  78. <if test="ammeterNo != null">ammeter_no,</if>
  79. <if test="name != null">name,</if>
  80. <if test="phone != null">phone,</if>
  81. <if test="province != null">province,</if>
  82. <if test="city != null">city,</if>
  83. <if test="country != null">country,</if>
  84. <if test="pumpingStationAddress != null">pumping_station_address,</if>
  85. <if test="area != null">area,</if>
  86. <if test="street != null">street,</if>
  87. <if test="neighbourhoodName != null">neighbourhood_name,</if>
  88. <if test="buildingNo != null">building_no,</if>
  89. <if test="doorNo != null">door_no,</if>
  90. <if test="statisticsTime != null">statistics_time,</if>
  91. <if test="unpaidFees != null">unpaid_fees,</if>
  92. <if test="balanceFees != null">balance_fees,</if>
  93. <if test="waterFees != null">water_fees,</if>
  94. <if test="meterAmount != null">meter_amount,</if>
  95. <if test="meterReader != null">meter_reader,</if>
  96. <if test="meterReaderPhone != null">meter_reader_phone,</if>
  97. <if test="delFlag != null">del_flag,</if>
  98. <if test="revision != null">revision,</if>
  99. <if test="createBy != null">create_by,</if>
  100. <if test="createTime != null">create_time,</if>
  101. <if test="updateBy != null">update_by,</if>
  102. <if test="updateTime != null">update_time,</if>
  103. <if test="remark != null">remark,</if>
  104. </trim>
  105. <trim prefix="values (" suffix=")" suffixOverrides=",">
  106. <if test="userNo != null">#{userNo},</if>
  107. <if test="cardNo != null">#{cardNo},</if>
  108. <if test="ammeterNo != null">#{ammeterNo},</if>
  109. <if test="name != null">#{name},</if>
  110. <if test="phone != null">#{phone},</if>
  111. <if test="province != null">#{province},</if>
  112. <if test="city != null">#{city},</if>
  113. <if test="country != null">#{country},</if>
  114. <if test="pumpingStationAddress != null">#{pumpingStationAddress},</if>
  115. <if test="area != null">#{area},</if>
  116. <if test="street != null">#{street},</if>
  117. <if test="neighbourhoodName != null">#{neighbourhoodName},</if>
  118. <if test="buildingNo != null">#{buildingNo},</if>
  119. <if test="doorNo != null">#{doorNo},</if>
  120. <if test="statisticsTime != null">#{statisticsTime},</if>
  121. <if test="unpaidFees != null">#{unpaidFees},</if>
  122. <if test="balanceFees != null">#{balanceFees},</if>
  123. <if test="waterFees != null">#{waterFees},</if>
  124. <if test="meterAmount != null">#{meterAmount},</if>
  125. <if test="meterReader != null">#{meterReader},</if>
  126. <if test="meterReaderPhone != null">#{meterReaderPhone},</if>
  127. <if test="delFlag != null">#{delFlag},</if>
  128. <if test="revision != null">#{revision},</if>
  129. <if test="createBy != null">#{createBy},</if>
  130. <if test="createTime != null">#{createTime},</if>
  131. <if test="updateBy != null">#{updateBy},</if>
  132. <if test="updateTime != null">#{updateTime},</if>
  133. <if test="remark != null">#{remark},</if>
  134. </trim>
  135. </insert>
  136. <update id="updateTUserInfo" parameterType="TUserInfo">
  137. update t_user_info
  138. <trim prefix="SET" suffixOverrides=",">
  139. <if test="userNo != null">user_no = #{userNo},</if>
  140. <if test="cardNo != null">card_no = #{cardNo},</if>
  141. <if test="ammeterNo != null">ammeter_no = #{ammeterNo},</if>
  142. <if test="name != null">name = #{name},</if>
  143. <if test="phone != null">phone = #{phone},</if>
  144. <if test="province != null">province = #{province},</if>
  145. <if test="city != null">city = #{city},</if>
  146. <if test="country != null">country = #{country},</if>
  147. <if test="pumpingStationAddress != null">pumping_station_address = #{pumpingStationAddress},</if>
  148. <if test="area != null">area = #{area},</if>
  149. <if test="street != null">street = #{street},</if>
  150. <if test="neighbourhoodName != null">neighbourhood_name = #{neighbourhoodName},</if>
  151. <if test="buildingNo != null">building_no = #{buildingNo},</if>
  152. <if test="doorNo != null">door_no = #{doorNo},</if>
  153. <if test="statisticsTime != null">statistics_time = #{statisticsTime},</if>
  154. <if test="unpaidFees != null">unpaid_fees = #{unpaidFees},</if>
  155. <if test="balanceFees != null">balance_fees = #{balanceFees},</if>
  156. <if test="waterFees != null">water_fees = #{waterFees},</if>
  157. <if test="meterAmount != null">meter_amount = #{meterAmount},</if>
  158. <if test="meterReader != null">meter_reader = #{meterReader},</if>
  159. <if test="meterReaderPhone != null">meter_reader_phone = #{meterReaderPhone},</if>
  160. <if test="delFlag != null">del_flag = #{delFlag},</if>
  161. <if test="revision != null">revision = #{revision},</if>
  162. <if test="createBy != null">create_by = #{createBy},</if>
  163. <if test="createTime != null">create_time = #{createTime},</if>
  164. <if test="updateBy != null">update_by = #{updateBy},</if>
  165. <if test="updateTime != null">update_time = #{updateTime},</if>
  166. <if test="remark != null">remark = #{remark},</if>
  167. </trim>
  168. ,revision = revision + 1
  169. where id = #{id}
  170. </update>
  171. <delete id="deleteTUserInfoById" parameterType="Long">
  172. update t_user_info set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
  173. </delete>
  174. <delete id="deleteTUserInfoByIds" parameterType="String">
  175. update t_user_info set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
  176. <foreach item="id" collection="array" open="(" separator="," close=")">
  177. #{id}
  178. </foreach>
  179. </delete>
  180. <!-- 2025年01月08日16:49:50 下面是新增的SQL,不允许删除或者覆盖 -->
  181. <select id="selectNeighbourAndMeterPhoneByPhone" resultType="com.slibra.business.res.NeighbourAndMeterPhoneResp">
  182. SELECT DISTINCT
  183. neighbourhood_name neighbourhoodName,
  184. meter_reader_phone meterReaderPhone
  185. FROM
  186. t_user_info
  187. WHERE
  188. phone = #{phone} and del_flag = 0
  189. </select>
  190. <select id="selectNeighbourAndMeterPhoneByNeighbour" resultType="com.slibra.business.res.NeighbourAndMeterPhoneResp">
  191. <!--SELECT DISTINCT
  192. neighbourhood_name neighbourhoodName,
  193. meter_reader_phone meterReaderPhone
  194. FROM
  195. t_user_info
  196. WHERE
  197. &lt;!&ndash; neighbourhood_name like concat('%', #{asrText}, '%') and del_flag = 0 &ndash;&gt;
  198. neighbourhood_name = #{asrText} and del_flag = 0-->
  199. SELECT
  200. meter_reader_phone meterReaderPhone,
  201. neighbourhood_name neighbourhoodName,
  202. count(*) total
  203. FROM
  204. t_user_info
  205. WHERE
  206. neighbourhood_name = #{asrText}
  207. and meter_reader_phone is not NULL AND meter_reader_phone != ''
  208. and del_flag = 0
  209. GROUP BY
  210. meter_reader_phone,
  211. neighbourhood_name
  212. ORDER BY
  213. total desc
  214. </select>
  215. <update id="updateUserPhoneByNo">
  216. update t_user_info set phone = #{phone} where user_no = #{userNo}
  217. </update>
  218. <select id="selectTUserInfoListByPhoneOrUserNo" resultMap="TUserInfoResult">
  219. <include refid="selectTUserInfoVo"/>
  220. where del_flag = 0 AND (user_no = #{asrText} OR phone = #{asrText})
  221. </select>
  222. </mapper>