package com.ruoyi.chargingPile.api.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "状态统计根据类型分组VO")
|
public class StatusModeStatisticsVO implements Serializable {
|
|
|
@ApiModelProperty(value = "充电模式(1=超级快充,2=快充,3=慢充)")
|
private Integer chargeMode;
|
|
|
@ApiModelProperty(value = "空闲")
|
private Integer freeCount;
|
|
|
@ApiModelProperty(value = "充满")
|
private Integer filledCount;
|
|
|
@ApiModelProperty(value = "插枪")
|
private Integer insertCount;
|
|
|
@ApiModelProperty(value = "充电中")
|
private Integer chargingCount;
|
|
}
|