package com.ruoyi.integration.drainage.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Null;
|
import java.math.BigDecimal;
|
|
/**
|
* 充电设备接口
|
* @author zhibing.pu
|
* @Date 2025/1/21 14:03
|
*/
|
@Data
|
public class ConnectorInfo {
|
/**
|
* 充电设备接口编码
|
*/
|
@NotNull
|
@JsonProperty("ConnectorID")
|
private String connectorID;
|
/**
|
* 充电设备接口名称
|
*/
|
@Null
|
@JsonProperty("ConnectorName")
|
private String connectorName;
|
/**
|
* 充电设备接口类型
|
*/
|
@NotNull
|
@JsonProperty("ConnectorType")
|
private Integer connectorType;
|
/**
|
* 额定电压上限
|
*/
|
@NotNull
|
@JsonProperty("VoltageUpperLimits")
|
private Integer voltageUpperLimits;
|
/**
|
* 额定电压下限
|
*/
|
@NotNull
|
@JsonProperty("VoltageLowerLimits")
|
private Integer voltageLowerLimits;
|
/**
|
* 额定电流
|
*/
|
@NotNull
|
@JsonProperty("Current")
|
private Integer current;
|
/**
|
* 额定功率
|
*/
|
@NotNull
|
@JsonProperty("Power")
|
private BigDecimal power;
|
/**
|
* 车位号
|
*/
|
@Null
|
@JsonProperty("ParkNo")
|
private String parkNo;
|
/**
|
* 国家标准
|
* 1:2011
|
* 2:2015
|
*/
|
@NotNull
|
@JsonProperty("NationalStandard")
|
private Integer nationalStandard;
|
/**
|
* 枪二维码
|
*/
|
@Null
|
@JsonProperty("QRCode")
|
private String QRCode;
|
}
|