This commit is contained in:
2023-06-25 10:34:28 +08:00
parent 59195d1d03
commit 08da801286
2 changed files with 20 additions and 29 deletions

View File

@@ -614,8 +614,6 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService {
* @return
*/
public Map<String, Integer> getPileTypeNum(Long stationId) {
StopWatch sw = new StopWatch();
sw.start("高德查询-根据站点id查询快、慢充设备数量");
int fastTotal = 0;
int fastFree = 0;
int slowTotal = 0;
@@ -641,8 +639,6 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService {
map.put("fastFree", fastFree);
map.put("slowTotal", slowTotal);
map.put("slowFree", slowFree);
sw.stop();
log.info(sw.prettyPrint());
return map;
}
}