[测评系统]--测评系统核心代码库
wzp
2024-08-21 f891000086af5ac150fc120e1f3c781266f1d063
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ots.project.tool.report.reportCalculation.request;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class HolderInfo {
    
    private String fullName;
    
    private String accessCode;
    
    private String calculationType;
    public void setCalculationType(CalculationTypeEnum typeEnum) {
        this.calculationType = typeEnum.name();
    }
    private String testTakerNo;
    private String titleOfThePosition;
}