无关风月
2 天以前 22d0531ef01ace7a66a0c5cc3e313944fe2ec8b4
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
36
37
38
39
package com.ruoyi.system.vo.system;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "任务情况汇总VO")
public class TaskSummaryVO implements Serializable {
 
    @ApiModelProperty("总数")
    @Excel(name = "总数")
    private Integer total;
    @ApiModelProperty("清洁合格")
    @Excel(name = "清洁合格")
    private Integer num1;
    @ApiModelProperty("清洁不合格")
    @Excel(name = "清洁不合格")
    private Integer num2;
    @ApiModelProperty("未执行任务")
    @Excel(name = "未执行任务")
    private Integer num3;
    @ApiModelProperty("待整改任务")
    @Excel(name = "待整改任务")
    private Integer num4;
    @ApiModelProperty("审核通过任务")
    @Excel(name = "审核通过任务")
    private Integer num5;
    @ApiModelProperty("超时未执行任务")
    @Excel(name = "超时未执行任务")
    private Integer num6;
    @ApiModelProperty("整改完成任务")
    @Excel(name = "整改完成任务")
    private Integer num7;
 
}