xuhy
2025-07-03 effe9fa26b86de56258755c2d9de096048f01b23
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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.math.BigDecimal;
import java.util.List;
 
@Data
@ApiModel(value = "巡检人员报表VO")
public class PatrolInspectorVO {
 
    @ApiModelProperty("巡检员名称")
    @Excel(name = "巡检员名称", width = 20,orderNum = "1")
 
    private String nickName;
    @ApiModelProperty("电话")
    @Excel(name = "电话", width = 20,orderNum = "2")
 
    private String phonenumber;
    @ApiModelProperty("项目名称")
    @Excel(name = "项目名称", width = 20,orderNum = "3")
 
    private String deptName;
    @ApiModelProperty("总计任务数")
    @Excel(name = "总计任务数", width = 20,orderNum = "4")
 
    private Integer total;
    @ApiModelProperty("合格")
    @Excel(name = "合格", width = 20,orderNum = "5")
 
    private Integer num1;
    @ApiModelProperty("不合格")
    @Excel(name = "不合格", width = 20,orderNum = "6")
 
    private Integer num2;
    @ApiModelProperty("合格率")
    @Excel(name = "合格率", width = 20,orderNum = "7")
 
    private BigDecimal num3;
    @ApiModelProperty("未执行")
    @Excel(name = "未执行", width = 20,orderNum = "8")
 
    private Integer num4;
    @ApiModelProperty("待确认")
    @Excel(name = "待确认", width = 20,orderNum = "9")
 
    private Integer num5;
    @ApiModelProperty("超时")
    @Excel(name = "超时", width = 20,orderNum = "10")
 
    private Integer num6;
    @ApiModelProperty("待整改")
    @Excel(name = "待整改", width = 20,orderNum = "11")
 
    private Integer num7;
    @ApiModelProperty("整改完成")
    @Excel(name = "整改完成", width = 20,orderNum = "12")
 
    private Integer num8;
    @ApiModelProperty("整改完成率")
    @Excel(name = "整改完成率", width = 20,orderNum = "13")
 
    private BigDecimal num9;
    @ApiModelProperty("完成数")
    @Excel(name = "完成数", width = 20,orderNum = "14")
 
    private Integer num10;
    @ApiModelProperty("完成率")
    @Excel(name = "完成率", width = 20,orderNum = "15")
 
    private BigDecimal num11;
    @ApiModelProperty("请假天数")
    @Excel(name = "请假天数", width = 20,orderNum = "16")
 
    private Integer num12;
}