mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-08 16:08:23 +08:00
小程序查询站点详情接口增加 站点联系电话字段
This commit is contained in:
@@ -489,7 +489,10 @@ public class PileStationInfoServiceImpl implements PileStationInfoService {
|
|||||||
if (StringUtils.isNotBlank(pileStationVO.getParkFeeDescribe())) {
|
if (StringUtils.isNotBlank(pileStationVO.getParkFeeDescribe())) {
|
||||||
stationVO.setParkFeeDescribe(pileStationVO.getParkFeeDescribe());
|
stationVO.setParkFeeDescribe(pileStationVO.getParkFeeDescribe());
|
||||||
}
|
}
|
||||||
|
// 站点联系电话
|
||||||
|
if (StringUtils.isNotBlank(pileStationVO.getStationTel())) {
|
||||||
|
stationVO.setStationTel(stationVO.getStationTel());
|
||||||
|
}
|
||||||
// 站点图片
|
// 站点图片
|
||||||
if (StringUtils.isNotBlank(pileStationVO.getPictures())) {
|
if (StringUtils.isNotBlank(pileStationVO.getPictures())) {
|
||||||
stationVO.setStationImgList(Lists.newArrayList(pileStationVO.getPictures().split(",")));
|
stationVO.setStationImgList(Lists.newArrayList(pileStationVO.getPictures().split(",")));
|
||||||
|
|||||||
@@ -43,6 +43,11 @@ public class StationInfoVO {
|
|||||||
*/
|
*/
|
||||||
private String distance;
|
private String distance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 站点联系电话
|
||||||
|
*/
|
||||||
|
private String stationTel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 电费 每度单价
|
* 电费 每度单价
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user