| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.models.auth.In; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | @NotNull |
| | | @JsonProperty("ConnectorElectricity") |
| | | private BigDecimal connectorElectricity; |
| | | /** |
| | | * 充电设备接口累 |
| | | * 计充电时长 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("ConnectorTotalChargeTime") |
| | | private Integer ConnectorTotalChargeTime; |
| | | /** |
| | | * 充电设备接口累 |
| | | * 计充电次数 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("ConnectorTotalChargeNum") |
| | | private Integer ConnectorTotalChargeNum; |
| | | /** |
| | | * 充电设备接口累 |
| | | * 计告警数量 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("ConnectorTotalWarningNum") |
| | | private Integer ConnectorTotalWarningNum; |
| | | } |