| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | /** |
| | | * 充电设备接口名称 |
| | | */ |
| | | @Null |
| | | @NotNull |
| | | @JsonProperty("ConnectorName") |
| | | private String connectorName; |
| | | /** |
| | | * 1:车辆充电设备接口 |
| | | * 2:换电站内的电池箱充电设备接口 |
| | | */ |
| | | @Null |
| | | @JsonProperty("EquipmentClassification") |
| | | private Integer equipmentClassification; |
| | | /** |
| | | * 充电设备接口类型 |
| | | */ |
| | |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("VoltageUpperLimits") |
| | | private Integer voltageUpperLimits; |
| | | private BigDecimal voltageUpperLimits; |
| | | /** |
| | | * 额定电压下限 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("VoltageLowerLimits") |
| | | private Integer voltageLowerLimits; |
| | | private BigDecimal voltageLowerLimits; |
| | | /** |
| | | * 额定电流 |
| | | */ |
| | |
| | | * 国家标准 |
| | | * 1:2011 |
| | | * 2:2015 |
| | | * 3:兼容2011和2015 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("NationalStandard") |
| | |
| | | @Null |
| | | @JsonProperty("QRCode") |
| | | private String QRCode; |
| | | @Null |
| | | @JsonProperty("ConstantVoltageUpperLimits") |
| | | private BigDecimal constantVoltageUpperLimits; |
| | | @Null |
| | | @JsonProperty("ConstantVoltageLowerLimits") |
| | | private BigDecimal constantVoltageLowerLimits; |
| | | |
| | | @Null |
| | | @JsonProperty("ConstantCurrentUpperLimits") |
| | | private BigDecimal constantCurrentUpperLimits; |
| | | |
| | | @Null |
| | | @JsonProperty("ConstantCurrentLowerLimits") |
| | | private BigDecimal constantCurrentLowerLimits; |
| | | @NotNull |
| | | @JsonProperty("AuxPower") |
| | | private Integer auxPower; |
| | | |
| | | @NotNull |
| | | @TableField("OpreateStatus") |
| | | private Integer opreateStatus; |
| | | @Null |
| | | @TableField("OpreateHours") |
| | | private String opreateHours; |
| | | } |