update 大数据屏接口

This commit is contained in:
jsowell
2026-08-04 16:29:17 +08:00
parent bfa209becb
commit 9315e701e6
22 changed files with 320 additions and 83 deletions

View File

@@ -759,7 +759,19 @@
</select>
<select id="countTotalStations" resultType="java.lang.Long">
select count(*) from pile_station_info where del_flag = '0'
select count(*) from pile_station_info t1 where t1.del_flag = '0'
<if test="merchantIdList != null and merchantIdList.size() > 0">
and t1.merchant_id in
<foreach collection="merchantIdList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="stationIdList != null and stationIdList.size() > 0">
and t1.id in
<foreach collection="stationIdList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
</select>
<select id="getStationMapData" resultType="com.jsowell.pile.vo.web.StationMapVO">