mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 汇付会员
This commit is contained in:
@@ -94,4 +94,6 @@ public interface IPileStationInfoService {
|
||||
List<PileStationInfo> getStationInfoForLianLian();
|
||||
|
||||
List<String> queryByStationDeptIds(List<String> stationIds);
|
||||
|
||||
String selectAdapayMemberId(String stationId);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
if (StringUtils.isNotBlank(pileStationInfo.getQrcodePrefix())) {
|
||||
vo.setQrcodePrefix(pileStationInfo.getQrcodePrefix());
|
||||
}
|
||||
vo.setMerchantId(pileStationInfo.getMerchantId().toString());
|
||||
// vo.setMerchantId(pileStationInfo.getMerchantId().toString());
|
||||
// vo.setMerchantName(pileStationInfo.getmer());
|
||||
vo.setMerchantAdminName(pileStationInfo.getStationAdminName());
|
||||
vo.setStationStatus(Integer.parseInt(pileStationInfo.getStationStatus()));
|
||||
@@ -326,18 +326,7 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
// 小程序站点列表页只展示对外开放的站点
|
||||
dto.setPublicFlag(Constants.ONE);
|
||||
// 根据前台参数分页
|
||||
// PageHelper.startPage(pageNum, pageSize);
|
||||
List<PileStationVO> list = pileStationInfoMapper.queryStationInfos(dto);
|
||||
// PageInfo<PileStationVO> pageInfo = new PageInfo<>(list);
|
||||
// if (CollectionUtils.isEmpty(pageInfo.getList())) {
|
||||
// return PageResponse.builder()
|
||||
// .pageNum(pageInfo.getPageNum())
|
||||
// .pageSize(pageInfo.getPageSize())
|
||||
// .list(Lists.newArrayList())
|
||||
// .pages(pageInfo.getPages())
|
||||
// .total(pageInfo.getTotal())
|
||||
// .build();
|
||||
// }
|
||||
|
||||
List<StationInfoVO> stationVOList = Lists.newArrayList();
|
||||
StationInfoVO stationVO = null;
|
||||
@@ -430,5 +419,15 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
|
||||
.build();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据站点id查询运营商配置的汇付会员id
|
||||
* @param stationId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public String selectAdapayMemberId(String stationId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user