update 联联平台 查询充电站信息接口

This commit is contained in:
Lemon
2023-04-10 16:58:44 +08:00
parent e518cacad3
commit bdec088ad1
5 changed files with 116 additions and 14 deletions

View File

@@ -19,12 +19,12 @@ public class ConnectorInfo {
* 充电设备接口编码 Y
* 充电设备接口编码,同一对接平台内唯一
*/
private String PileConnectorCode;
private String ConnectorID;
/**
* 充电设备接口名称 N
*/
private String connectorName;
private String ConnectorName;
/**
* 充电设备接口类型 Y
@@ -33,32 +33,32 @@ public class ConnectorInfo {
* 3交流接口插头带枪线模式3连接方式C
* 4直流接口枪头带枪线模式4
*/
private Integer connectorType;
private Integer ConnectorType;
/**
* 额定电压上限(单位V) Y
*/
private Integer ratedVoltageMax;
private Integer VoltageUpperLimits;
/**
* 额定电压下限(单位V) Y
*/
private Integer ratedVoltageMin;
private Integer VoltageLowerLimits;
/**
* 额定电流(单位A) Y
*/
private Integer ratedCurrent;
private Integer Current;
/**
* 额定功率(单位kW) Y
*/
private BigDecimal ratedPower;
private BigDecimal Power;
/**
* 车位号 N
* 停车场车位编号
*/
private String parkingCode;
private String ParkNo;
}