fei
2025-09-16 fcc5194c1b671e76cb9054c9a14360139fe3be72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.domain.vo;
 
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
@Data
public class AnalysisResult {
    @Excel(name = "项目名称")
    private String everyProjectName;
    @Excel(name = "项目内案卷总数")
 
    private Long cnt ;
    @Excel(name = "未完成案卷数")
 
    private Long unfinished;
    @Excel(name = "完成案卷数")
 
    private Long finished;
}