|  |  |  | 
|---|
|  |  |  | public class OnSitDispatchBoardVO { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "月台数量") | 
|---|
|  |  |  | private Integer platformTotal; | 
|---|
|  |  |  | private int platformTotal; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "空闲月台数量") | 
|---|
|  |  |  | private Integer freePlatform; | 
|---|
|  |  |  | private int freePlatform; | 
|---|
|  |  |  | @ApiModelProperty(value = "监控视频播放插件地址") | 
|---|
|  |  |  | private String  videoPluginUrl; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "预约车辆") | 
|---|
|  |  |  | private Integer reservationCar; | 
|---|
|  |  |  | private int reservationCar; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "作业车辆") | 
|---|
|  |  |  | private Integer workingCar; | 
|---|
|  |  |  | private int workingCar; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "排队车辆") | 
|---|
|  |  |  | private Integer lineUpCar; | 
|---|
|  |  |  | private int lineUpCar; | 
|---|
|  |  |  | @ApiModelProperty(value = "进入车辆作业情况-签到数") | 
|---|
|  |  |  | private int signedNum; | 
|---|
|  |  |  | @ApiModelProperty(value = "进入车辆作业情况-已叫号") | 
|---|
|  |  |  | private int calledNum; | 
|---|
|  |  |  | @ApiModelProperty(value = "进入车辆作业情况-已作业") | 
|---|
|  |  |  | private int workedNum; | 
|---|
|  |  |  | @ApiModelProperty(value = "进入车辆作业情况-已完成") | 
|---|
|  |  |  | private int doneNum; | 
|---|
|  |  |  | @ApiModelProperty(value = "4个监控点indexCode集合") | 
|---|
|  |  |  | private String[] videoIndexCodes; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "今日月台完成订单统计" , hidden = true) | 
|---|
|  |  |  | private List<PlatformGroupFinishVO> platformGroupFinishList; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "实时月台作业信息" , hidden = true) | 
|---|
|  |  |  | private List<PlatformWorkDataVO> platformWorkDataList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //TODO 实时告警信息 | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|