|
|
@@ -286,7 +286,10 @@
|
|
|
and v.station_id=#{stationId}
|
|
|
</if>
|
|
|
<if test="stationIds!=null and stationIds.length > 0">
|
|
|
- and v.station_id in (#{stationIds}
|
|
|
+ and v.station_id in
|
|
|
+ <foreach collection="stationIds" item="stationId" index="i" open="(" separator="," close=")">
|
|
|
+ #{stationId}
|
|
|
+ </foreach>
|
|
|
</if>
|
|
|
<if test="pillarStart!=null and pillarStart!=''">
|
|
|
and t.pillar_start=#{pillarStart}
|
|
|
@@ -391,7 +394,10 @@
|
|
|
and v.station_id=#{stationId}
|
|
|
</if>
|
|
|
<if test="stationIds!=null and stationIds.length > 0">
|
|
|
- and v.station_id in (#{stationIds}
|
|
|
+ and v.station_id in
|
|
|
+ <foreach collection="stationIds" item="stationId" index="i" open="(" separator="," close=")">
|
|
|
+ #{stationId}
|
|
|
+ </foreach>
|
|
|
</if>
|
|
|
<if test="pillarCode!=null and pillarCode!=''">
|
|
|
and t.pillar_start=#{pillarCode}
|
|
|
@@ -430,7 +436,10 @@
|
|
|
and v.station_id=#{stationId}
|
|
|
</if>
|
|
|
<if test="stationIds!=null and stationIds.length > 0">
|
|
|
- and v.station_id in (#{stationIds}
|
|
|
+ and v.station_id in
|
|
|
+ <foreach collection="stationIds" item="stationId" index="i" open="(" separator="," close=")">
|
|
|
+ #{stationId}
|
|
|
+ </foreach>
|
|
|
</if>
|
|
|
<if test="pillarCode!=null and pillarCode!=''">
|
|
|
and t.pillar_start=#{pillarCode}
|