2024-03-26 17:13:00 +08:00
|
|
|
package com.jsowell.pile.thirdparty;
|
2023-09-05 15:53:16 +08:00
|
|
|
|
2023-09-08 09:31:03 +08:00
|
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
2023-09-05 15:53:16 +08:00
|
|
|
import lombok.Data;
|
|
|
|
|
|
2023-09-08 09:31:03 +08:00
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2023-09-05 15:53:16 +08:00
|
|
|
/**
|
|
|
|
|
* 设备基本信息
|
|
|
|
|
*
|
|
|
|
|
* @author Lemon
|
|
|
|
|
* @Date 2023/9/5 15:16
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class ZDLEquipmentInfo {
|
2023-09-08 09:31:03 +08:00
|
|
|
@JSONField(name = "EquipmentID")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String equipmentId;
|
|
|
|
|
|
2023-09-08 09:31:03 +08:00
|
|
|
@JSONField(name = "EquipmentType")
|
2023-09-09 09:14:18 +08:00
|
|
|
private Integer equipmentType;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "Power")
|
|
|
|
|
private BigDecimal power;
|
|
|
|
|
|
|
|
|
|
@JSONField(name = "ConnectorInfos")
|
|
|
|
|
private List<ZDLConnectorInfo> connectorInfos;
|
2023-09-05 15:53:16 +08:00
|
|
|
}
|