中电联 查询站、桩、枪口信息接口、统计信息接口

This commit is contained in:
Lemon
2023-09-09 09:14:18 +08:00
parent 7ec68cdb26
commit a28f274eec
4 changed files with 202 additions and 8 deletions

View File

@@ -3,6 +3,8 @@ package com.jsowell.thirdparty.zhongdianlian.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
import java.math.BigDecimal;
/**
* TODO
*
@@ -15,21 +17,24 @@ public class ZDLConnectorInfo {
private String connectorId;
@JSONField(name = "ConnectorType")
private String connectorType;
private Integer connectorType;
@JSONField(name = "VoltageUpperLimits")
private String voltageUpperLimits;
private Integer voltageUpperLimits;
@JSONField(name = "VoltageLowerLimits")
private String voltageLowerLimits;
private Integer voltageLowerLimits;
@JSONField(name = "Current")
private String current;
private Integer current;
@JSONField(name = "ParkNo")
private String parkNo;
@JSONField(name = "Power")
private String power;
private BigDecimal power;
@JSONField(name = "NationalStandard")
private String nationalStandard;
private Integer nationalStandard;
}

View File

@@ -18,7 +18,7 @@ public class ZDLEquipmentInfo {
private String equipmentId;
@JSONField(name = "EquipmentType")
private String equipmentType;
private Integer equipmentType;
@JSONField(name = "Power")
private BigDecimal power;