| | |
| | | |
| | | @Data |
| | | @ApiModel(value = "设备状态统计VO") |
| | | public class GunStatusStatisticsVO implements Serializable { |
| | | public class GunStatusStatisticsVO { |
| | | |
| | | @ApiModelProperty(value = "充电桩类型统计 key:充电模式(1=超级快充,2=快充,3=慢充)") |
| | | private Map<Integer,Integer> modeStatistics; |
| | | private List<Map<String,Object>> modeStatistics; |
| | | @ApiModelProperty(value = "状态统计 key:充电模式(1=离线,2=故障,3=充电中)") |
| | | private Map<Integer,Integer> statusStatistics; |
| | | private List<Map<String,Integer>> statusStatistics; |
| | | @ApiModelProperty(value = "状态统计根据类型分组") |
| | | private List<StatusModeStatisticsVO> statusModeStatistics; |
| | | } |