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;
|
}
|