Files
jsowell-charger-web/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/EquipmentStatsInfo.java
2023-04-15 15:47:34 +08:00

37 lines
791 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.thirdparty.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
import java.util.List;
/**
* 充电设备统计信息
*/
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Data
public class EquipmentStatsInfo {
/**
* 设备编码 Y
* 设备唯一编码,对同一对接平台,保证唯一
*/
private String EquipmentID;
/**
* 充电设备累计电量 Y
* 累计电量单位kWh精度0.1
*/
private BigDecimal EquipmentElectricity;
/**
* 充电设备接口统计信息列表 Y
* 充设备的所有充电设备接口统计对象集合
*/
private List<ConnectorStatsInfo> ConnectorStatsInfos;
}