mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 23:15:11 +08:00
新增 联联平台获取站点信息接口
This commit is contained in:
@@ -155,4 +155,11 @@ public interface IPileBasicInfoService {
|
||||
* @return
|
||||
*/
|
||||
List<PersonalPileInfoVO> getPileInfoByMemberId(String memberId);
|
||||
|
||||
/**
|
||||
* 联联平台用,通过站点id查询桩列表信息
|
||||
* @param stationId
|
||||
* @return
|
||||
*/
|
||||
List<PileBasicInfo> getPileListByStationId(String stationId);
|
||||
}
|
||||
|
||||
@@ -91,5 +91,5 @@ public interface IPileStationInfoService {
|
||||
|
||||
PileStationVO getStationInfoByPileSn(String pileSn);
|
||||
|
||||
List<PileStationInfo> getStationInfoForLianLian(int pageNum, int pageSize);
|
||||
List<PileStationInfo> getStationInfoForLianLian();
|
||||
}
|
||||
|
||||
@@ -601,4 +601,9 @@ public class PileBasicInfoServiceImpl implements IPileBasicInfoService {
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PileBasicInfo> getPileListByStationId(String stationId) {
|
||||
return pileBasicInfoMapper.getPileListByStationId(stationId);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -146,8 +146,8 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PileStationInfo> getStationInfoForLianLian(int pageNum, int pageSize) {
|
||||
PageUtils.startPage(pageNum, pageSize);
|
||||
public List<PileStationInfo> getStationInfoForLianLian() {
|
||||
// PageUtils.startPage(pageNum, pageSize);
|
||||
return pileStationInfoMapper.getStationInfoForLianLian();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user