AmountWaterUsedAmountMapper.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.bz.smart_city.dao.pay.AmountWaterUsedAmountMapper">
  4. <sql id="amountWaterusedamountColumns">
  5. a.id AS "id",
  6. a.approver_id AS "approverId",
  7. a.approvetime AS "approvetime",
  8. a.customerandmeterrela_id AS "customerandmeterrelaId",
  9. a.office_id AS "officeId",
  10. a.lastreading AS "lastreading",
  11. a.lastrecorddate AS "lastrecorddate",
  12. a.metercode AS "metercode",
  13. a.watermeter_id AS "watermeterId",
  14. a.month AS "month",
  15. a.payamount AS "payamount",
  16. a.reading AS "reading",
  17. a.recorddate AS "recorddate",
  18. a.amount AS "amount",
  19. a.state AS "state",
  20. a.waterproperty_id AS "waterpropertyId",
  21. a.year AS "year",
  22. a.account_id AS "accountId",
  23. a.accountname AS "accountname",
  24. a.accountnumber AS "accountnumber",
  25. a.address AS "address",
  26. a.watertype AS "watertype",
  27. a.isprint AS "isprint",
  28. a.ele_no AS "eleNo",
  29. a.iswxsend AS "iswxsend",
  30. a.sendwxdate AS "sendwxdate",
  31. a.create_by AS "createBy",
  32. a.create_date AS "createDate",
  33. a.update_by AS "updateBy",
  34. a.update_date AS "updateDate",
  35. a.remarks AS "remarks",
  36. a.del_flag AS "delFlag",
  37. a.site_id as "siteId",
  38. a.customer_id as "customerId",
  39. c.label as stateName,
  40. CONCAT(a.`year`,'年',LPAD(a.month, 2, 0),'月') as closingName
  41. </sql>
  42. <sql id="amountWaterusedamountJoins">
  43. inner join sc_device d on a.watermeter_id = d.id
  44. left join pay_sys_dict c on c.`value` = a.state and c.type ='水量状态'
  45. <if test="customerId!= null" >AND c.customer_id = #{customerId}</if>
  46. <if test="siteId!= null" > and c.site_id = #{siteId} </if>
  47. </sql>
  48. <select id="get" resultType="com.bz.smart_city.entity.pay.AmountWaterUsedAmount">
  49. SELECT
  50. <include refid="amountWaterusedamountColumns"/>
  51. FROM pay_amount_waterusedamount a
  52. <include refid="amountWaterusedamountJoins"/>
  53. WHERE a.id = #{id}
  54. </select>
  55. <select id="getList" resultType="com.bz.smart_city.dto.pay.AmountWaterUsedAmountDto">
  56. SELECT
  57. <include refid="amountWaterusedamountColumns"/>
  58. FROM pay_amount_waterusedamount a
  59. <include refid="amountWaterusedamountJoins"/>
  60. <where>
  61. a.customer_id = #{customerId}
  62. <if test="siteId!= null" > and a.site_id = #{siteId} </if>
  63. <choose>
  64. <when test="condition != null and condition !=''">
  65. and (a.accountname like concat('%',#{condition} ,'%') or a.accountnumber like concat('%',#{condition} ,'%') or a.metercode like concat('%',#{condition} ,'%') or a.address like concat('%',#{condition} ,'%'))
  66. </when>
  67. <otherwise>
  68. <if test="accountname!= null and accountname !=''" > and a.accountname = #{accountname} </if>
  69. <if test="accountnumber!= null and accountnumber !=''" > and a.accountnumber = #{accountnumber} </if>
  70. <if test="metercode!= null and metercode !=''" > and a.metercode = #{metercode} </if>
  71. <if test="address!= null and address !=''" > and a.address = #{address} </if>
  72. </otherwise>
  73. </choose>
  74. <if test ="year != null and month != null">
  75. and a.year = #{year} and a.month = #{month}
  76. </if>
  77. <if test="state!= null" > and a.state = #{state} </if>
  78. <if test="amountMin != null"> and a.payamount >= #{amountMin} </if>
  79. <if test="amountMax != null"> and a.payamount <![CDATA[ <= ]]> #{amountMax} </if>
  80. <if test="programItems != null and programItems.size() != 0">
  81. and
  82. <foreach collection="programItems" item="item" open="(" separator=" or " close=")">
  83. a.${item.dimensionCode} = #{item.dimensionValue}
  84. </foreach>
  85. </if>
  86. </where>
  87. order by a.recorddate desc
  88. </select>
  89. <update id="update">
  90. UPDATE pay_amount_waterusedamount SET
  91. amount = #{amountWaterUsedAmount.amount},
  92. approver_id = #{amountWaterUsedAmount.approverId},
  93. approvetime = #{amountWaterUsedAmount.approvetime},
  94. customerandmeterrela_id = #{amountWaterUsedAmount.customerandmeterrelaId},
  95. office_id = #{amountWaterUsedAmount.officeId},
  96. lastreading = #{amountWaterUsedAmount.lastreading},
  97. lastrecorddate = #{amountWaterUsedAmount.lastrecorddate},
  98. metercode = #{amountWaterUsedAmount.metercode},
  99. watermeter_id = #{amountWaterUsedAmount.watermeterId},
  100. month = #{amountWaterUsedAmount.month},
  101. payamount = #{amountWaterUsedAmount.payamount},
  102. reading = #{amountWaterUsedAmount.reading},
  103. recorddate = #{amountWaterUsedAmount.recorddate},
  104. state = #{amountWaterUsedAmount.state},
  105. waterproperty_id = #{amountWaterUsedAmount.waterpropertyId},
  106. year = #{amountWaterUsedAmount.year},
  107. account_id = #{amountWaterUsedAmount.accountId},
  108. accountname = #{amountWaterUsedAmount.accountname},
  109. accountnumber = #{amountWaterUsedAmount.accountnumber},
  110. address = #{amountWaterUsedAmount.address},
  111. watertype = #{amountWaterUsedAmount.watertype},
  112. update_by = #{amountWaterUsedAmount.updateBy},
  113. update_date = #{amountWaterUsedAmount.updateDate},
  114. remarks = #{amountWaterUsedAmount.remarks},
  115. ele_no = #{amountWaterUsedAmount.eleNo},
  116. isprint = #{amountWaterUsedAmount.isprint},
  117. iswxsend = #{amountWaterUsedAmount.iswxsend},
  118. sendwxdate =#{amountWaterUsedAmount.sendwxdate}
  119. WHERE id = #{amountWaterUsedAmount.id}
  120. </update>
  121. <select id="getWaterUsedAmountByMeterId" resultType="com.bz.smart_city.dto.pay.AmountWaterUsedAmountDto">
  122. select a.create_date,w.install_time installdate,a.year,a.month
  123. from sc_install_list w
  124. left join pay_amount_waterusedamount a on a.watermeter_id = w.device_id
  125. where w.device_id = #{waterMeterId}
  126. order by a.year desc,a.month desc
  127. </select>
  128. <select id ="getIds" resultType="java.lang.String">
  129. SELECT
  130. a.id AS "id"
  131. FROM pay_amount_waterusedamount a
  132. <include refid="amountWaterusedamountJoins"/>
  133. <where>
  134. a.reading is not null
  135. and a.reading >= a.lastreading
  136. <if test="customerId!= null" >and a.customer_id = #{customerId} </if>
  137. <if test="siteId!= null" > and a.site_id = #{siteId} </if>
  138. <choose>
  139. <when test="condition != null and condition !=''">
  140. and (a.accountname like concat('%',#{condition} ,'%') or a.accountnumber like concat('%',#{condition} ,'%') or a.metercode like concat('%',#{condition} ,'%') or a.address like concat('%',#{condition} ,'%'))
  141. </when>
  142. <otherwise>
  143. <if test="accountname!= null and accountname !=''" > and a.accountname = #{accountname} </if>
  144. <if test="accountnumber!= null and accountnumber !=''" > and a.accountnumber = #{accountnumber} </if>
  145. <if test="metercode!= null and metercode !=''" > and a.metercode = #{metercode} </if>
  146. <if test="address!= null and address !=''" > and a.address = #{address} </if>
  147. </otherwise>
  148. </choose>
  149. <if test ="year != null and month != null">
  150. and a.year = #{year} and a.month = #{month}
  151. </if>
  152. <if test="state!= null" > and a.state = #{state} </if>
  153. <if test="amountMin != null"> and a.payamount >= #{amountMin} </if>
  154. <if test="amountMax != null"> and a.payamount <![CDATA[ <= ]]> #{amountMax} </if>
  155. <if test="programItems != null and programItems.size() != 0">
  156. and
  157. <foreach collection="programItems" item="item" open="(" separator=" or " close=")">
  158. <if test="item.dimensionId == 10">
  159. a.${item.dimensionCode} = #{item.dimensionValue}
  160. </if>
  161. </foreach>
  162. </if>
  163. </where>
  164. </select>
  165. <select id = "getCustId" resultType="java.lang.Integer">
  166. select customerId from pay_base_customerandmeterrela a group by a.customer_id
  167. </select>
  168. <select id="getAllAmountCount" resultType="java.lang.Integer">
  169. select count(1) as num
  170. from pay_base_customerandmeterrela rela
  171. left join pay_amount_waterusedamount amount on amount.watermeter_id = rela.watermeter_id
  172. and amount.year=#{year} and amount.month=#{month}
  173. where rela.businessstate=1 and amount.id is null
  174. <if test="customerId!= null" >and rela.customer_id = #{customerId} </if>
  175. <if test="siteId!= null" > and rela.site_id = #{siteId} </if>
  176. </select>
  177. <select id="getAllAmountCountByDay" resultType="java.lang.Integer">
  178. select count(1) as num
  179. from pay_base_customerandmeterrela rela
  180. left join pay_amount_waterusedamount_day amount on amount.watermeter_id = rela.watermeter_id
  181. and amount.read_date =DATE_FORMAT(DATE_SUB(now(),INTERVAL 1 day) ,'%Y%m%d')
  182. where rela.businessstate=1 and amount.id is null
  183. <if test="customerId!= null" >and rela.customer_id = #{customerId} </if>
  184. <if test="siteId!= null" > and rela.site_id = #{siteId} </if>
  185. </select>
  186. <select id="getAllAmountRecord" resultType="com.bz.smart_city.dto.pay.AmountWaterUsedAmountDto">
  187. select amount.id,
  188. amount.lastreading,
  189. amount.ele_no eleNo,
  190. rela.calculateway,
  191. rela.fixedamount,
  192. amount.watermeter_id watermeterId,
  193. amount.recorddate,
  194. rela.id customerandmeterrelaId,
  195. amount.waterproperty_id waterpropertyId,
  196. rela.account_id as accountId,
  197. amount.lastrecorddate
  198. from pay_amount_waterusedamount amount
  199. inner join pay_base_customerandmeterrela rela on rela.id= amount.customerandmeterrela_id
  200. where amount.year=#{year} and amount.month=#{month}
  201. and amount.reading is null and amount.payamount is null
  202. <if test="customerId!= null" > and rela.customer_id =#{customerId}</if>
  203. <if test="siteId!= null" > and rela.site_id = #{siteId} </if>
  204. </select>
  205. <insert id ="createdAmount" useGeneratedKeys="false">
  206. INSERT INTO pay_amount_waterusedamount
  207. (customerandmeterrela_id, office_id, lastreading, lastrecorddate, metercode,
  208. watermeter_id, month, payamount, reading, recorddate, amount, state,
  209. waterproperty_id, year, account_id, accountname, accountnumber, address,
  210. watertype, isprint, ele_no, iswxsend, sendwxdate, create_by, create_date,
  211. update_by, update_date, remarks, del_flag, site_id, customer_id)
  212. SELECT
  213. c.id,c.office_id,
  214. ifnull(lastwua.reading, IFNULL(d.new_meter_start,0)),
  215. ifnull(lastwua.recorddate,ifnull(d.install_time,d.date_create)),c.metercode,
  216. c.watermeter_id,#{month},null,null,null,NULL,1,
  217. c.waterproperty_id,#{year},c.account_id,c.accountname,c.accountnumber,c.address,
  218. c.watertype,null,d.electronic_no,null,null,1,NOW(),
  219. 1,now(),'批量生成抄表计划',0,c.site_id,c.customer_id
  220. FROM
  221. pay_base_customerandmeterrela c
  222. left join sc_install_list d on d.device_id =c.watermeter_id
  223. LEFT JOIN pay_amount_waterusedamount amount ON amount.watermeter_id = c.watermeter_id
  224. AND amount.YEAR = #{year}
  225. AND amount.MONTH = #{month}
  226. LEFT JOIN (
  227. SELECT
  228. oldwua.watermeter_id,
  229. oldwua.reading,
  230. oldwua.recorddate
  231. FROM
  232. (
  233. SELECT
  234. max(
  235. waterusedamount.create_date
  236. ) AS create_date,
  237. waterusedamount.watermeter_id
  238. FROM
  239. pay_amount_waterusedamount waterusedamount
  240. WHERE
  241. waterusedamount.state = 2
  242. GROUP BY
  243. waterusedamount.watermeter_id
  244. ) lastid
  245. LEFT JOIN pay_amount_waterusedamount oldwua ON lastid.create_date = oldwua.create_date
  246. AND oldwua.watermeter_id = lastid.watermeter_id
  247. ) lastwua ON c.watermeter_id = lastwua.watermeter_id
  248. WHERE
  249. c.businessstate = 1
  250. AND amount.id IS NULL
  251. <if test="customerId!= null" >AND c.customer_id = #{customerId}</if>
  252. <if test="siteId!= null" > and c.site_id = #{siteId} </if>
  253. limit 500
  254. </insert>
  255. <update id="batchUpdate">
  256. UPDATE pay_amount_waterusedamount SET
  257. amount = #{amountWaterUsedAmount.amount},
  258. payamount = #{amountWaterUsedAmount.payamount},
  259. reading = #{amountWaterUsedAmount.reading},
  260. recorddate = #{amountWaterUsedAmount.recorddate},
  261. update_date = #{amountWaterUsedAmount.updateDate}
  262. WHERE id = #{amountWaterUsedAmount.id}
  263. </update>
  264. <insert id ="createdAmountByDay" useGeneratedKeys="false">
  265. INSERT INTO pay_amount_waterusedamount_day (
  266. customerandmeterrela_id,
  267. office_id,
  268. lastreading,
  269. lastrecorddate,
  270. metercode,
  271. watermeter_id,
  272. payamount,
  273. reading,
  274. recorddate,
  275. amount,
  276. waterproperty_id,
  277. account_id,
  278. create_by,
  279. create_date,
  280. update_by,
  281. update_date,
  282. remarks,
  283. del_flag,
  284. site_id,
  285. customer_id,
  286. read_date,
  287. debt
  288. ) SELECT
  289. c.id,
  290. c.office_id,
  291. ifnull( lastwua.reading, ifnull(sil.new_meter_start,0) ),
  292. ifnull( lastwua.recorddate, c.create_date ),
  293. c.metercode,
  294. c.watermeter_id,
  295. NULL,
  296. NULL,
  297. NULL,
  298. NULL,
  299. c.waterproperty_id,
  300. c.account_id,
  301. 1,
  302. NOW(),
  303. 1,
  304. now(),
  305. '每天抄表计划',
  306. 0,
  307. c.site_id,
  308. c.customer_id,
  309. DATE_FORMAT( DATE_SUB( now(), INTERVAL 1 DAY ), '%Y%m%d' ),
  310. NULL
  311. FROM
  312. pay_base_customerandmeterrela c
  313. LEFT JOIN sc_install_list sil ON sil.device_id = c.watermeter_id
  314. LEFT JOIN pay_amount_waterusedamount_day amount ON amount.watermeter_id = c.watermeter_id
  315. AND amount.read_date = DATE_FORMAT( DATE_SUB( now(), INTERVAL 1 DAY ), '%Y%m%d' )
  316. LEFT JOIN (
  317. SELECT
  318. oldwua.watermeter_id,
  319. oldwua.reading,
  320. oldwua.recorddate
  321. FROM
  322. (
  323. SELECT
  324. max( waterusedamount.create_date ) AS create_date,
  325. waterusedamount.watermeter_id
  326. FROM
  327. pay_amount_waterusedamount waterusedamount
  328. WHERE
  329. waterusedamount.state = 2
  330. GROUP BY
  331. waterusedamount.watermeter_id
  332. ) lastid
  333. LEFT JOIN pay_amount_waterusedamount oldwua ON lastid.create_date = oldwua.create_date
  334. AND oldwua.watermeter_id = lastid.watermeter_id
  335. ) lastwua ON c.watermeter_id = lastwua.watermeter_id
  336. WHERE
  337. c.businessstate = 1
  338. AND amount.id IS NULL
  339. <if test="customerId!= null" >AND c.customer_id = #{customerId}</if>
  340. <if test="siteId!= null" > and c.site_id = #{siteId} </if>
  341. limit 500
  342. </insert>
  343. <resultMap id="MeterReadRecordResultMap" type="com.bz.smart_city.dto.pay.MeterReadRecordDto">
  344. <result column="device_id" property="deviceId" />
  345. <result column="read_time" property="readTime" />
  346. <result column="read_data" property="readData" />
  347. </resultMap>
  348. <select id ="getMeterReadRecord" resultMap="MeterReadRecordResultMap">
  349. select
  350. a.device_id,
  351. a.read_data,
  352. a.read_time
  353. from sc_meter_read_record a
  354. <where>
  355. a.read_date=DATE_FORMAT(DATE_SUB(now(),INTERVAL 1 day) ,'%Y%m%d')
  356. and a.device_id in
  357. <foreach collection="list" item="listItem" open="(" close=")" separator=",">
  358. <if test="listItem != null and listItem != ''">
  359. #{listItem}
  360. </if>
  361. </foreach>
  362. </where>
  363. </select>
  364. <update id="updateByDate">
  365. UPDATE pay_amount_waterusedamount_day SET
  366. amount = #{amountWaterUsedAmount.amount},
  367. payamount = #{amountWaterUsedAmount.payamount},
  368. reading = #{amountWaterUsedAmount.reading},
  369. recorddate = #{amountWaterUsedAmount.recorddate},
  370. update_date = #{amountWaterUsedAmount.updateDate}
  371. WHERE id = #{amountWaterUsedAmount.id}
  372. </update>
  373. <resultMap id="AmountWaterUsedAmountByDayResultMap" type="com.bz.smart_city.entity.pay.AmountWaterUsedAmountByDay">
  374. <result column="device_id" property="watermeterId" />
  375. <result column="watermeter_id" property="id" />
  376. </resultMap>
  377. <select id ="getAmountWaterUsedAmountByDay" resultMap="AmountWaterUsedAmountByDayResultMap">
  378. select
  379. a.id,
  380. a.watermeter_id
  381. from pay_amount_waterusedamount_day a
  382. <where>
  383. a.read_date=DATE_FORMAT(DATE_SUB(now(),INTERVAL 1 day) ,'%Y%m%d')
  384. <if test="customerId!= null" >and a.customer_id = #{customerId} </if>
  385. <if test="siteId!= null" > and a.site_id = #{siteId} </if>
  386. </where>
  387. </select>
  388. <select id="getAllAmountRecordByDay" resultType="com.bz.smart_city.entity.pay.AmountWaterUsedAmountByDay">
  389. select amount.id,
  390. amount.lastreading,
  391. amount.lastrecorddate,
  392. rela.calculateway,
  393. rela.fixedamount,
  394. amount.watermeter_id watermeterId,
  395. amount.recorddate,
  396. rela.id customerandmeterrelaId,
  397. amount.waterproperty_id waterpropertyId,
  398. rela.account_id as accountId
  399. from pay_amount_waterusedamount_day amount
  400. inner join pay_base_customerandmeterrela rela on rela.id= amount.customerandmeterrela_id
  401. where amount.read_date =DATE_FORMAT(DATE_SUB(now(),INTERVAL 1 day) ,'%Y%m%d')
  402. and amount.reading is null
  403. <if test="customerId!= null" > and rela.customer_id =#{customerId}</if>
  404. <if test="siteId!= null" > and rela.site_id = #{siteId} </if>
  405. </select>
  406. <select id="getWaterMeterIdByDay" resultType="java.math.BigInteger">
  407. select
  408. amount.watermeter_id
  409. from pay_amount_waterusedamount_day amount
  410. where amount.read_date =DATE_FORMAT(DATE_SUB(now(),INTERVAL 1 day) ,'%Y%m%d')
  411. and amount.reading is null
  412. <if test="customerId!= null" > and amount.customer_id =#{customerId}</if>
  413. <if test="siteId!= null" > and amount.site_id = #{siteId} </if>
  414. </select>
  415. <select id="getCustIdAndSiteId" resultType="com.bz.smart_city.entity.pay.archives.PayBaseCustomerandmeterrela">
  416. select
  417. c.customer_id customerId,
  418. c.site_id siteId
  419. from pay_base_customerandmeterrela c
  420. where c.businessstate =1
  421. and c.customer_id is not null and c.site_id is not null
  422. group by c.customer_id, c.site_id
  423. </select>
  424. <resultMap id="ReplaceMeterMap" type="com.bz.smart_city.dto.pay.ReplaceMeterDto">
  425. </resultMap>
  426. <select id ="getRepalceRecord" resultMap="ReplaceMeterMap">
  427. SELECT
  428. pc.device_id AS deviceId,
  429. pc.date_create AS replaceTime,
  430. pc.new_begin_wsv AS newBegin,
  431. pc.old_end_wsv AS oldEnd
  432. FROM
  433. (
  434. SELECT
  435. pc2.id,
  436. MAX( pc2.date_create ) AS dateCreate
  437. FROM
  438. sc_water_meter_replace_log pc2
  439. <where>
  440. <if test="list != null and list.size() != 0">
  441. pc2.device_id IN
  442. <foreach collection="list" item="listItem" open="(" close=")" separator=",">
  443. <if test="listItem != null and listItem != ''">
  444. #{listItem}
  445. </if>
  446. </foreach>
  447. </if>
  448. </where>
  449. GROUP BY
  450. pc2.id
  451. ) a
  452. LEFT JOIN sc_water_meter_replace_log pc ON a.id = pc.id
  453. </select>
  454. <resultMap id="ReplaceMeterCountMap" type="com.bz.smart_city.dto.pay.ReplaceMeterCountDto">
  455. </resultMap>
  456. <select id="getRepalceRecordCount" resultMap="ReplaceMeterCountMap">
  457. SELECT
  458. COUNT(*) as number,
  459. pc.device_id AS deviceId
  460. FROM sc_water_meter_replace_log pc LEFT JOIN sc_device scd on pc.device_id = scd.id
  461. <where>
  462. <if test="stTime != null"> and pc.date_create >= #{stTime,jdbcType=TIMESTAMP}</if>
  463. <if test="etTime != null"> and pc.date_create &lt;= #{etTime,jdbcType=TIMESTAMP}</if>
  464. <if test="siteId != null"> and scd.site_id = #{siteId}</if>
  465. <if test="customerId != null"> and scd.customer_id = #{customerId}</if>
  466. <if test="list != null and list.size() != 0">
  467. and pc.device_id IN
  468. <foreach collection="list" item="listItem" open="(" close=")" separator=",">
  469. <if test="listItem != null and listItem != ''">
  470. #{listItem}
  471. </if>
  472. </foreach>
  473. </if>
  474. </where>
  475. GROUP BY pc.device_id
  476. </select>
  477. <select id ="getRepalceRecordDetail" resultType="com.bz.smart_city.dto.pay.ReplaceMeterDto">
  478. SELECT
  479. pc.device_id AS deviceId,
  480. pc.date_create AS replaceTime,
  481. pc.new_begin_wsv AS newBegin,
  482. pc.old_end_wsv AS oldEnd
  483. FROM
  484. sc_water_meter_replace_log pc LEFT JOIN sc_device scd on pc.device_id = scd.id
  485. <where>
  486. <if test="stTime != null"> and pc.date_create >= #{stTime,jdbcType=TIMESTAMP}</if>
  487. <if test="etTime != null"> and pc.date_create &lt;= #{etTime,jdbcType=TIMESTAMP}</if>
  488. <if test="siteId != null"> and scd.site_id = #{siteId}</if>
  489. <if test="customerId != null"> and scd.customer_id = #{customerId}</if>
  490. <if test="list != null and list.size() != 0">
  491. and pc.device_id IN
  492. <foreach collection="list" item="listItem" open="(" close=")" separator=",">
  493. <if test="listItem != null and listItem != ''">
  494. #{listItem}
  495. </if>
  496. </foreach>
  497. </if>
  498. </where>
  499. </select>
  500. </mapper>