|
@@ -93,6 +93,9 @@
|
|
|
<if test="queryParams.thirdStationId != null">
|
|
<if test="queryParams.thirdStationId != null">
|
|
|
AND coi.third_party_station_id = #{queryParams.thirdStationId}
|
|
AND coi.third_party_station_id = #{queryParams.thirdStationId}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="queryParams.connectorId != null and queryParams.connectorId != ''">
|
|
|
|
|
+ AND coi.connector_id = #{queryParams.connectorId}
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
ORDER BY coi.create_time DESC
|
|
ORDER BY coi.create_time DESC
|
|
|
</select>
|
|
</select>
|
|
@@ -323,6 +326,9 @@
|
|
|
<if test="queryParams.thirdStationId != null">
|
|
<if test="queryParams.thirdStationId != null">
|
|
|
AND a.third_party_station_id = #{queryParams.thirdStationId}
|
|
AND a.third_party_station_id = #{queryParams.thirdStationId}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="queryParams.connectorId != null and queryParams.connectorId != ''">
|
|
|
|
|
+ AND a.connector_id = #{queryParams.connectorId}
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
ORDER BY a.create_time DESC
|
|
ORDER BY a.create_time DESC
|
|
|
</select>
|
|
</select>
|