mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-08-14 02:03:54 +08:00
update 大数据屏接口
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user