|
@@ -449,24 +449,28 @@ SELECT
|
|
|
|
|
|
<select id ="getRepalceRecord" resultMap="ReplaceMeterMap">
|
|
|
SELECT
|
|
|
- pc.device_id as deviceId,
|
|
|
- pc.date_create as replaceTime,
|
|
|
- pc.new_begin_wsv as newBegin,
|
|
|
- pc.old_end_wsv as oldEnd
|
|
|
- FROM sc_water_meter_replace_log pc
|
|
|
- left JOIN
|
|
|
- (select
|
|
|
- pc2.id,pc2.device_id,MAX(pc2.date_create) as dateCreate
|
|
|
- FROM sc_water_meter_replace_log pc2
|
|
|
- WHERE pc2.device_id in
|
|
|
- <foreach collection="list" item="listItem" open="(" close=")" separator=",">
|
|
|
- <if test="listItem != null and listItem != ''">
|
|
|
- #{listItem}
|
|
|
- </if>
|
|
|
- </foreach>
|
|
|
-
|
|
|
- GROUP BY pc2.device_id,pc2.id) b
|
|
|
- on pc.id=b.id
|
|
|
+ pc.device_id AS deviceId,
|
|
|
+ pc.date_create AS replaceTime,
|
|
|
+ pc.new_begin_wsv AS newBegin,
|
|
|
+ pc.old_end_wsv AS oldEnd
|
|
|
+ FROM
|
|
|
+ (
|
|
|
+ SELECT
|
|
|
+ pc2.id,
|
|
|
+ MAX( pc2.date_create ) AS dateCreate
|
|
|
+ FROM
|
|
|
+ sc_water_meter_replace_log pc2
|
|
|
+ WHERE
|
|
|
+ pc2.device_id IN
|
|
|
+ <foreach collection="list" item="listItem" open="(" close=")" separator=",">
|
|
|
+ <if test="listItem != null and listItem != ''">
|
|
|
+ #{listItem}
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ GROUP BY
|
|
|
+ pc2.id
|
|
|
+ ) a
|
|
|
+ LEFT JOIN sc_water_meter_replace_log pc ON a.id = pc.id
|
|
|
|
|
|
</select>
|
|
|
|