| package com.doumee.dao.web.response.platformReport; | 
|   | 
| import com.doumee.core.haikang.model.cars.response.CarsAlarmResultListResponse; | 
| import com.doumee.core.haikang.model.cars.response.CarsDeviceDetaisResponse; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 运输量 | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/10/25 10:59 | 
|  */ | 
| @Data | 
| public class BoardCarsListVO { | 
|   | 
|     @ApiModelProperty(value = "车辆及经纬度信息") | 
|     private List<CarsDeviceDetaisResponse> carsList; | 
|   | 
|     @ApiModelProperty(value = "在途数量") | 
|     private int busyNum; | 
|     @ApiModelProperty(value = "空闲数量") | 
|     private int idleNum; | 
|   | 
|     @ApiModelProperty(value = "离线数量") | 
|     private int offlineNum; | 
|     @ApiModelProperty(value = "报警信息列表") | 
|     List<CarsAlarmResultListResponse> eventList; | 
|   | 
| } |