mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
新增 联联平台获取站点信息接口
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.MemberBasicInfo;
|
||||
import com.jsowell.pile.domain.PileBasicInfo;
|
||||
import com.jsowell.pile.vo.uniapp.MemberVO;
|
||||
import com.jsowell.pile.vo.uniapp.MemberWalletLogVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
@@ -143,4 +143,11 @@ public interface PileBasicInfoMapper {
|
||||
* @return
|
||||
*/
|
||||
public List<PersonalPileInfoVO> getPileInfoByMemberId(String memberId);
|
||||
|
||||
/**
|
||||
* 联联平台用,通过站点id查询桩列表信息
|
||||
* @param stationId
|
||||
* @return
|
||||
*/
|
||||
List<PileBasicInfo> getPileListByStationId(@Param("stationId") String stationId);
|
||||
}
|
||||
|
||||
@@ -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