diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileStationInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileStationInfoServiceImpl.java index 1b3a12314..79abafc4c 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileStationInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileStationInfoServiceImpl.java @@ -431,6 +431,9 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService { stationVO.setStationAddress(pileStationVO.getAddress()); stationVO.setStationLat(pileStationVO.getStationLat()); stationVO.setStationLng(pileStationVO.getStationLng()); + if (StringUtils.isNotBlank(pileStationVO.getParkFeeDescribe())) { + stationVO.setParkFeeDescribe(pileStationVO.getParkFeeDescribe()); + } // 站点图片 if (StringUtils.isNotBlank(pileStationVO.getPictures())) { diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/vo/base/StationInfoVO.java b/jsowell-pile/src/main/java/com/jsowell/pile/vo/base/StationInfoVO.java index 505b2121f..b1202be86 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/vo/base/StationInfoVO.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/vo/base/StationInfoVO.java @@ -58,6 +58,11 @@ public class StationInfoVO { */ private String totalPrice; + /** + * 停车费率描述 + */ + private String parkFeeDescribe; + /** * 占桩免费时长 */