rk
2025-09-28 80f9adf3f7682edf1d997f48c65a9bac2e4c1605
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
34
35
package com.doumee.dao.web.response;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.doumee.dao.business.model.PlatformJob;
import com.doumee.dao.system.model.Multifile;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
@Data
@ApiModel("月台任务数据")
public class PlatformWorkVO {
 
    @ApiModelProperty(value = "服务器当前时间")
    private Date currentDate;
    @ApiModelProperty(value = "任务列表")
    private List<PlatformJob> platformJobList;
 
    @ApiModelProperty(value = "作业数量")
    private Integer workNum = 0;
 
    @ApiModelProperty(value = "已叫号数量")
    private Integer callNum = 0;
 
    @ApiModelProperty(value = "等待数量 转移 + 月台组下 已签到数据")
    private Integer waitNum = 0;
 
    @ApiModelProperty(value = "异常数量")
    private Integer exceptionNum  = 0;
 
}