[测评系统]--测评系统核心代码库
zhijie
2023-11-15 560e61f5348aa726a19edd1ab380c84938cabd49
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.ots.project.tool.report.LAQ;
 
import com.ots.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @description: LAQ导入模板
 * @author: zhijie
 * @create: 2023-10-10 14:46
 **/
@Data
public class LAQTemplate {
 
    @Excel(name = "Name")
    private String name;
 
    @Excel(name = "E-mail")
    private String email;
 
    @Excel(name = "Scored on")
    private Date scoredOn;
 
    private String scoredOnStr;
 
    @Excel(name = "Company")
    private String company;
 
    @Excel(name = "OLAS")
    private BigDecimal olas;
 
    @Excel(name = "CA")
    private BigDecimal ca;
 
    @Excel(name = "BLA")
    private BigDecimal bla;
 
    @Excel(name = "NR")
    private BigDecimal nr;
 
    @Excel(name = "AR")
    private BigDecimal ar;
 
    @Excel(name = "OPEN")
    private BigDecimal open;
 
    @Excel(name = "CONS")
    private BigDecimal cons;
 
    @Excel(name = "EXTRA")
    private BigDecimal extra;
 
    @Excel(name = "AGREE")
    private BigDecimal agree;
 
    @Excel(name = "EMOSTA")
    private BigDecimal emosta;
 
    @Excel(name = "Perfomance")
    private BigDecimal perfomance;
}