mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-08-15 10:37:34 +08:00
bugfix
This commit is contained in:
@@ -163,4 +163,6 @@ public interface PileStationInfoMapper {
|
||||
* @return 城市设备数量列表
|
||||
*/
|
||||
List<CityDeviceCountVO> getCityDeviceCount();
|
||||
|
||||
List<String> getAllStationId();
|
||||
}
|
||||
|
||||
@@ -250,4 +250,10 @@ public interface PileStationInfoService {
|
||||
* 按城市统计设备数量
|
||||
*/
|
||||
List<CityDeviceCountVO> getCityDeviceCount();
|
||||
|
||||
/**
|
||||
* 获取所有站点id
|
||||
* @return
|
||||
*/
|
||||
List<String> getAllStationId();
|
||||
}
|
||||
|
||||
@@ -1690,4 +1690,9 @@ public class PileStationInfoServiceImpl implements PileStationInfoService {
|
||||
return pileStationInfoMapper.getCityDeviceCount();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getAllStationId() {
|
||||
return pileStationInfoMapper.getAllStationId();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -809,4 +809,11 @@
|
||||
GROUP BY cityName
|
||||
ORDER BY deviceCount DESC
|
||||
</select>
|
||||
|
||||
<select id="getAllStationId" resultType="java.lang.String">
|
||||
select id
|
||||
from
|
||||
pile_station_info
|
||||
where del_flag = '0'
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user