新增后管数据看板

This commit is contained in:
Lemon
2026-05-08 11:42:11 +08:00
parent 478c70a352
commit b563659f84
14 changed files with 217 additions and 4 deletions

View File

@@ -754,4 +754,20 @@
#{merchantId,jdbcType=VARCHAR}
</foreach>
</select>
<select id="countTotalStations" resultType="java.lang.Long">
select count(*) from pile_station_info where del_flag = '0'
</select>
<select id="getStationMapData" resultType="com.jsowell.pile.vo.web.StationMapVO">
select station_name as stationName,
station_lng as stationLng,
station_lat as stationLat
from pile_station_info
where del_flag = '0'
and station_lng is not null
and station_lat is not null
and station_lng != ''
and station_lat != ''
</select>
</mapper>