无关风月
1 天以前 083c414ff683ab12e65069c6c0ba6871ed1ed09f
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
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;
 
@Data
@ApiModel(value = "随机督察报表VO")
public class InspectorVO {
 
    @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 BigDecimal num7;
}