南瑞平台 controller类 并测试

This commit is contained in:
Lemon
2023-10-12 09:14:13 +08:00
parent aef44dcce9
commit 192cf56e84
11 changed files with 162 additions and 67 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -20,27 +21,27 @@ public class NRAlarmInfo {
/**
* 枪口编号
*/
@JSONField(name = "ConnectorID")
@JsonProperty(value = "ConnectorID")
private String connectorId;
/**
* 告警时间
* 格 式 为 yyyy-MM-dd HH:mm:ss
*/
@JSONField(name = "Alert_time")
@JsonProperty(value = "Alert_time")
private String alertTime;
/**
* 告警代码
*/
@JSONField(name = "Alert_code")
@JsonProperty(value = "Alert_code")
private Integer alertCode;
/**
* 描述
* 文字描述,最大长度 256 字符
*/
@JSONField(name = "Describe")
@JsonProperty(value = "Describe")
private String describe;
/**
@@ -48,6 +49,6 @@ public class NRAlarmInfo {
* 告警发生0告警恢复1
* 默认为 0
*/
@JSONField(name = "Status")
@JsonProperty(value = "Status")
private Integer status;
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -22,13 +23,13 @@ public class NRConnectorInfo {
/**
* 充电设备接口编码
*/
@JSONField(name = "ConnectorID")
@JsonProperty(value = "ConnectorID")
private String connectorId;
/**
* 充电设备接口名称
*/
@JSONField(name = "ConnectorName")
@JsonProperty(value = "ConnectorName")
private String connectorName;
/**
@@ -39,35 +40,35 @@ public class NRConnectorInfo {
* 4直流接口枪头带枪线模式 4
* 5无线充电座
*/
@JSONField(name = "ConnectorType")
@JsonProperty(value = "ConnectorType")
private Integer connectorType;
/**
* 额定电压上限
* 单位V
*/
@JSONField(name = "VoltageUpperLimits")
@JsonProperty(value = "VoltageUpperLimits")
private Integer voltageUpperLimits;
/**
* 额定电压下限
* 单位V
*/
@JSONField(name = "VoltageLowerLimits")
@JsonProperty(value = "VoltageLowerLimits")
private Integer voltageLowerLimits;
/**
* 额定电流
* 单位A
*/
@JSONField(name = "Current")
@JsonProperty(value = "Current")
private Integer current;
/**
* 额定功率
* 单位kW
*/
@JSONField(name = "Power")
@JsonProperty(value = "Power")
private BigDecimal power;
/**
@@ -75,6 +76,6 @@ public class NRConnectorInfo {
* 1:2011
* 2:2015
*/
@JSONField(name = "NationalStandard")
@JsonProperty(value = "NationalStandard")
private Integer nationalStandard;
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -23,25 +24,25 @@ public class NRConnectorStatusInfo {
/**
* 充电设备接口编码
*/
@JSONField(name = "ConnectorID")
@JsonProperty(value = "ConnectorID")
private String connectorID;
/**
* 充电设备接口状态
*/
@JSONField(name = "Status")
@JsonProperty(value = "Status")
private Integer status;
/**
* A 相电流
*/
@JSONField(name = "CurrentA")
@JsonProperty(value = "CurrentA")
private Integer currentA;
/**
* A 相电压
*/
@JSONField(name = "VoltageA")
@JsonProperty(value = "VoltageA")
private Integer voltageA;
/**
@@ -51,14 +52,14 @@ public class NRConnectorStatusInfo {
* 默认0
* 交流充电桩采集不到SOC 值的填 0
*/
@JSONField(name = "SOC")
@JsonProperty(value = "SOC")
private BigDecimal soc;
/**
* 开始充电时间
* 格 式 为 yyyy-MM-dd HH:mm:ss
*/
@JSONField(name = "Begin_time")
@JsonProperty(value = "Begin_time")
private String beginTime;
/**
@@ -67,13 +68,13 @@ public class NRConnectorStatusInfo {
*
* 单位kWh
*/
@JSONField(name = "Current_kwh")
@JsonProperty(value = "Current_kwh")
private BigDecimal currentKwh;
/**
* 时间戳
* 数据生成时间(秒级时间戳)
*/
@JSONField(name = "Time_stamp")
@JsonProperty(value = "Time_stamp")
private Integer timeStamp;
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -24,20 +25,20 @@ public class NREquipmentInfo {
* 设备编码
* 设备唯一编码,对同一运营商,保证唯一
*/
@JSONField(name = "EquipmentID")
@JsonProperty(value = "EquipmentID")
private String equipmentID;
/**
* 设备名称
*/
@JSONField(name = "EquipmentName")
@JsonProperty(value = "EquipmentName")
private String equipmentName;
/**
* 充电桩投运日期
* yyyy-MM-dd 格式
*/
@JSONField(name = "OpenForBusinessDate")
@JsonProperty(value = "OpenForBusinessDate")
private String openForBusinessDate;
/**
@@ -46,7 +47,7 @@ public class NREquipmentInfo {
* 2交流设备
* 3交直流一体设备
*/
@JSONField(name = "EquipmentType")
@JsonProperty(value = "EquipmentType")
private Integer equipmentType;
/**
@@ -57,19 +58,19 @@ public class NREquipmentInfo {
* 6维护中
* 50正常使用
*/
@JSONField(name = "EquipmentStatus")
@JsonProperty(value = "EquipmentStatus")
private Integer equipmentStatus;
/**
* 额定功率
* 单位kW
*/
@JSONField(name = "Power")
@JsonProperty(value = "Power")
private BigDecimal power;
/**
* 充电设备接口列表
*/
@JSONField(name = "ConnectorInfos")
@JsonProperty(value = "ConnectorInfos")
private List<NRConnectorInfo> connectorInfos;
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -24,52 +25,52 @@ public class NRStationInfo {
* 充电站id
* 运营商自定义的唯一编码
*/
@JSONField(name = "StationID")
@JsonProperty(value = "StationID")
private String stationId;
/**
* 运营商id
* 统一社会信用代码
*/
@JSONField(name = "OperatorID")
@JsonProperty(value = "OperatorID")
private String operatorID;
/**
* 设备所属方ID
* 设备所属方组织机构代码
*/
@JSONField(name = "EquipmentOwnerID")
@JsonProperty(value = "EquipmentOwnerID")
private String equipmentOwnerID;
/**
* 充电站名称
*/
@JSONField(name = "StationName")
@JsonProperty(value = "StationName")
private String stationName;
/**
* 充电站国家代码
* 比如 CN
*/
@JSONField(name = "CountryCode")
@JsonProperty(value = "CountryCode")
private String countryCode;
/**
* 充电站省市辖区编码
*/
@JSONField(name = "AreaCode")
@JsonProperty(value = "AreaCode")
private String areaCode;
/**
* 详细地址
*/
@JSONField(name = "Address")
@JsonProperty(value = "Address")
private String address;
/**
* 服务电话
*/
@JSONField(name = "ServiceTel")
@JsonProperty(value = "ServiceTel")
private String serviceTel;
/**
@@ -79,7 +80,7 @@ public class NRStationInfo {
* 3居民充电区
* 255其他
*/
@JSONField(name = "StationType")
@JsonProperty(value = "StationType")
private Integer stationType;
/**
@@ -90,7 +91,7 @@ public class NRStationInfo {
* 6维护中
* 50正常使用
*/
@JSONField(name = "StationStatus")
@JsonProperty(value = "StationStatus")
private Integer stationStatus;
/**
@@ -99,19 +100,19 @@ public class NRStationInfo {
* 默认0 未知
*
*/
@JSONField(name = "ParkNums")
@JsonProperty(value = "ParkNums")
private Integer parkNums;
/**
* 经度
*/
@JSONField(name = "StationLng")
@JsonProperty(value = "StationLng")
private BigDecimal stationLng;
/**
* 纬度
*/
@JSONField(name = "StationLat")
@JsonProperty(value = "StationLat")
private BigDecimal stationLat;
/**
@@ -133,21 +134,21 @@ public class NRStationInfo {
* 301居民
* 255其他
*/
@JSONField(name = "Construction")
@JsonProperty(value = "Construction")
private Integer construction;
/**
* 站点照片
* 充电设备照片、充电车位照片、停车场入口照片
*/
@JSONField(name = "Pictures")
@JsonProperty(value = "Pictures")
private List<String> pictures;
/**
* 站点投运日期
* yyyy-MM-dd 格式
*/
@JSONField(name = "OpenForBusinessDate")
@JsonProperty(value = "OpenForBusinessDate")
private String openForBusinessDate;
/**
@@ -155,24 +156,24 @@ public class NRStationInfo {
* 0
* 1
*/
@JSONField(name = "OpenAllDay")
@JsonProperty(value = "OpenAllDay")
private Integer openAllDay;
/**
* 营业时间
*/
@JSONField(name = "BusineHours")
@JsonProperty(value = "BusineHours")
private String busineHours;
/**
* 最低单价
*/
@JSONField(name = "MinElectricityPrice")
@JsonProperty(value = "MinElectricityPrice")
private BigDecimal minElectricityPrice;
/**
* 充电设备信息
*/
@JSONField(name = "EquipmentInfos")
@JsonProperty(value = "EquipmentInfos")
private List<NREquipmentInfo> equipmentInfos;
}

View File

@@ -1,6 +1,7 @@
package com.jsowell.thirdparty.nanrui.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -20,9 +21,9 @@ import java.util.List;
@Builder
public class NRStationStatusInfo {
@JSONField(name = "StationID")
@JsonProperty(value = "StationID")
private String stationId;
@JSONField(name = "ConnectorStatusInfos")
@JsonProperty(value = "ConnectorStatusInfos")
private List<NRConnectorStatusInfo> connectorStatusInfos;
}