package com.ruoyi.jianguan.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Null;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 充电设备信息
|
* @author zhibing.pu
|
* @Date 2025/1/21 13:51
|
*/
|
@Data
|
public class EquipmentInfo {
|
/**
|
* 设备编号
|
*/
|
@NotNull
|
@JsonProperty("EquipmentID")
|
private String equipmentID;
|
/**
|
* 设备生产商组织机构代码
|
*/
|
@Null
|
@JsonProperty("ManufacturerID")
|
private String manufacturerID;
|
/**
|
* 设备唯一
|
* 编码
|
*/
|
@Null
|
@JsonProperty("EquipmentUniqueNumber")
|
private String equipmentUniqueNumber;
|
/**
|
* 设备生产商名称
|
*/
|
@Null
|
@JsonProperty("ManufacturerName")
|
private String manufacturerName;
|
/**
|
* 设备型号
|
*/
|
@Null
|
@JsonProperty("EquipmentModel")
|
private String equipmentModel;
|
/**
|
* 设备生产日期
|
* YYYY-MM-DD
|
*/
|
@Null
|
@JsonProperty("ProductionDate")
|
private String productionDate;
|
/**
|
* 设备类型
|
*/
|
@NotNull
|
@JsonProperty("EquipmentType")
|
private Integer equipmentType;
|
/**
|
* 充电设备接口信息列表
|
*/
|
@NotNull
|
@JsonProperty("ConnectorInfos")
|
private List<ConnectorInfo> connectorInfos;
|
/**
|
* 充电设备经度
|
*/
|
@Null
|
@JsonProperty("EquipmentLng")
|
private BigDecimal equipmentLng;
|
/**
|
* 充电设备纬度
|
*/
|
@Null
|
@JsonProperty("EquipmentLat")
|
private BigDecimal equipmentLat;
|
/**
|
* 充电设备总功率
|
*/
|
@NotNull
|
@JsonProperty("Power")
|
private BigDecimal power;
|
/**
|
* 充电设备名称
|
*/
|
@Null
|
@JsonProperty("EquipmentName")
|
private String equipmentName;
|
/**
|
* 设备分类
|
*/
|
@NotNull
|
@JsonProperty("EquipmentClassification")
|
private Integer equipmentClassification;
|
}
|