mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 21:15:06 +08:00
42 lines
897 B
Java
42 lines
897 B
Java
package com.jsowell.pile.thirdparty;
|
||
|
||
import com.alibaba.fastjson2.annotation.JSONField;
|
||
import lombok.Data;
|
||
|
||
import java.math.BigDecimal;
|
||
import java.util.List;
|
||
|
||
/**
|
||
* 设备基本信息
|
||
*
|
||
* @author Lemon
|
||
* @Date 2023/9/5 15:16
|
||
*/
|
||
@Data
|
||
public class ZDLEquipmentInfo {
|
||
@JSONField(name = "EquipmentID")
|
||
private String equipmentId;
|
||
|
||
@JSONField(name = "EquipmentType")
|
||
private Integer equipmentType;
|
||
|
||
@JSONField(name = "Power")
|
||
private BigDecimal power;
|
||
|
||
@JSONField(name = "ConnectorInfos")
|
||
private List<ZDLConnectorInfo> connectorInfos;
|
||
|
||
/**
|
||
* ======================= 以下为青海平台必填字段 =======================
|
||
*/
|
||
|
||
/**
|
||
* 设备分类
|
||
*
|
||
* 1:车辆充电设备
|
||
* 2:换电站内的电池箱充电设备
|
||
*/
|
||
@JSONField(name = "EquipmentClassification")
|
||
private Integer equipmentClassification;
|
||
}
|