package com.ruoyi.domain.vo;
|
|
import com.ruoyi.common.annotation.Excel;
|
import lombok.Data;
|
import org.apache.poi.ss.usermodel.IndexedColors;
|
|
@Data
|
public class AnalysisResult {
|
@Excel(name = "项目名称", headerColor = IndexedColors.BLACK)
|
private String everyProjectName;
|
@Excel(name = "项目内案卷总数", headerColor = IndexedColors.BLACK)
|
|
private Long cnt ;
|
@Excel(name = "未完成案卷数", headerColor = IndexedColors.BLACK)
|
private Long unfinished;
|
|
@Excel(name = "未上传附件", headerColor = IndexedColors.BLACK)
|
|
private Long unwf;
|
@Excel(name = "待修改", headerColor = IndexedColors.BLACK)
|
|
private Long dxg;
|
@Excel(name = "完成案卷数", headerColor = IndexedColors.BLACK)
|
|
private Long finished;
|
}
|