update 修改类名

This commit is contained in:
Lemon
2023-06-14 11:42:12 +08:00
parent 7a15469bdf
commit 2430e4beaf
5 changed files with 14 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ import java.math.BigDecimal;
*/ */
@Data @Data
public class ConnectorInfo { public class AMapConnectorInfo {
// 充电设备接口编码同一运营商内唯一 // 充电设备接口编码同一运营商内唯一
@JSONField(name = "ConnectorID") @JSONField(name = "ConnectorID")

View File

@@ -11,7 +11,7 @@ import java.util.List;
*/ */
@Data @Data
public class EquipmentInfo { public class AMapEquipmentInfo {
// 设备唯一编码对同一运营商保证唯一 // 设备唯一编码对同一运营商保证唯一
@JSONField(name = "EquipmentID") @JSONField(name = "EquipmentID")
private String equipmentID; private String equipmentID;
@@ -35,7 +35,7 @@ public class EquipmentInfo {
// 充电设备接口列表 // 充电设备接口列表
@JSONField(name = "ConnectorInfos") @JSONField(name = "ConnectorInfos")
private List<ConnectorInfo> connectorInfos; private List<AMapConnectorInfo> AMapConnectorInfos;
// 充电设备总功率 单位kW // 充电设备总功率 单位kW
@JSONField(name = "Power") @JSONField(name = "Power")

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
* @Date 2023/6/14 11:02 * @Date 2023/6/14 11:02
*/ */
@Data @Data
public class PriceChargingInfo { public class AMapPriceChargingInfo {
/** /**
* 时间段描述 * 时间段描述
* 00:00-24:00表示全天电价相同 * 00:00-24:00表示全天电价相同

View File

@@ -11,7 +11,7 @@ import java.util.List;
*/ */
@Data @Data
public class StationInfo { public class AMapStationInfo {
// 充电站ID 运营商自定义的唯一编码 // 充电站ID 运营商自定义的唯一编码
@JSONField(name = "StationID") @JSONField(name = "StationID")
private String stationID; private String stationID;
@@ -132,7 +132,7 @@ public class StationInfo {
// 充电收费信息 // 充电收费信息
@JSONField(name = "PriceChargingInfo") @JSONField(name = "PriceChargingInfo")
private List<PriceChargingInfo> priceChargingInfo; private List<AMapPriceChargingInfo> AMapPriceChargingInfo;
// 快充总桩数 // 快充总桩数
@JSONField(name = "FastEquipmentNum") @JSONField(name = "FastEquipmentNum")
@@ -144,5 +144,5 @@ public class StationInfo {
// 充电设备信息列表 // 充电设备信息列表
@JSONField(name = "EquipmentInfos") @JSONField(name = "EquipmentInfos")
private List<EquipmentInfo> equipmentInfos; private List<AMapEquipmentInfo> AMapEquipmentInfos;
} }

View File

@@ -1,5 +1,10 @@
package com.jsowell.thirdparty.amap.service; package com.jsowell.thirdparty.amap.service;
public class AMapService { /**
* 高德地图Service
*
* @author Lemon
* @Date 2023/6/14 11:38
*/
public interface AMapService {
} }