龚焕茏
2024-07-03 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf
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
package com.mindskip.xzs.domain.vo;
 
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.mindskip.xzs.utility.excel.ExcelExport;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.math.BigDecimal;
 
/**
 * @author gonghl
 * @since 2024/5/24
 */
 
@Data
@Accessors(chain = true)
public class ExamPaperDataExportVO {
 
    private Integer id;
 
    @ExcelExport("部门名称")
    private String name;
 
    @ExcelExport("参考人数")
    private Integer factPeopleTotal;
 
    @ExcelExport("参考人数百分比")
    private BigDecimal referencePercentage;
 
    @ExcelExport("平均分")
    private BigDecimal averageScore;
 
    @ExcelExport("总考试次数")
    private Integer examTotal;
 
}