mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-19 05:27:59 +08:00
update qcyun停车优化
This commit is contained in:
@@ -57,4 +57,12 @@ public interface ThirdPartyParkingConfigService {
|
||||
* 查询基本信息列表(调用时需分页)
|
||||
*/
|
||||
List<ThirdpartyParkingConfig> selectInfoList();
|
||||
|
||||
/**
|
||||
* 根据站点查询绑定的停车平台配置
|
||||
*
|
||||
* @param stationId 站点id
|
||||
* @return 停车平台配置
|
||||
*/
|
||||
ThirdpartyParkingConfig selectByStationId(String stationId);
|
||||
}
|
||||
|
||||
@@ -59,4 +59,9 @@ public class ThirdPartyParkingConfigServiceImpl implements ThirdPartyParkingConf
|
||||
return thirdpartyParkingConfigMapper.selectInfoList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public ThirdpartyParkingConfig selectByStationId(String stationId) {
|
||||
return thirdpartyParkingConfigMapper.selectByStationId(stationId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user