无关风月
昨天 02bb94e413f6950b9786c5ee86c0937bc20f8ae8
ruoyi-system/src/main/java/com/ruoyi/system/vo/system/InspectorVO.java
@@ -1,5 +1,6 @@
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;
@@ -11,25 +12,45 @@
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;
}