Pu Zhibing
8 天以前 7a4f9541331bef779a506b38a27ed5c3373c0bec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
 
}