[测评系统]--测评系统核心代码库
wzp
2024-12-26 85af821201ec2da71f39cf474995289c82118404
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package com.ots.project.tool.report.PAQ;
 
 
import com.ots.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @description: PAQ手动导入平台进行处理的模板
 * @author: wzp
 * @create: 2024-12-23
 */
@Data
public class PAQTemplate {
 
    @Excel(name = "Name")
    private String name;
 
    @Excel(name = "E-mail")
    private String email;
 
    @Excel(name = "Client")
    private String client;
 
    @Excel(name = "Test Time")
    private Date testTime;
 
    /**
     * 自夸T1
     */
    @Excel(name = "ISP_T1")
    private String P_SDE_T1;
 
    /**
     * 印象管理T1
     */
    @Excel(name = "IM_T1")
    private String P_IM_T1;
 
    /**
     * 答题不一致性T1
     */
    @Excel(name = "Inconsistency_T1")
    private String P_INCON_T1;
 
    /**
     * 灵活性
     */
    @Excel(name = "1. Flxibility")
    private String P_Flex01;
 
    /**
     * 创造性
     */
    @Excel(name = "2. Creativity")
    private String P_Creat02;
 
    /**
     * 分析导向
     */
    @Excel(name = "3. Analytic Approach")
    private String P_Analyt03;
 
    /**
     * 成就导向
     */
    @Excel(name = "4. Achievement")
    private String P_Achiev05;
 
    /**
     * 能动性
     */
    @Excel(name = "5. Initiative")
    private String P_Initi06;
 
    /**
     * 坚持性
     */
    @Excel(name = "6. Persistence")
    private String P_Persis07;
 
    /**
     * 缜密性
     */
    @Excel(name = "7. Thoroughness")
    private String P_Thorou08;
 
    /**
     * 可靠性
     */
    @Excel(name = "8. Dependability")
    private String P_Depend09;
 
    /**
     * 计划/组织性
     */
    @Excel(name = "9. Planning & Organizgin")
    private String P_Plan10;
 
    /**
     * 个人精力
     */
    @Excel(name = "10. Energy")
    private String P_Energy12;
 
    /**
     * 社交主动性
     */
    @Excel(name = "11. Socially Open")
    private String P_Social13;
 
    /**
     * 影响力
     */
    @Excel(name = "12. Influncing")
    private String P_Influ15;
 
    /**
     * 团队合作
     */
    @Excel(name = "13. Teamwork")
    private String P_Team16;
 
    /**
     * 同理心
     */
    @Excel(name = "14. Empathetic")
    private String P_Empath17;
 
    /**
     * 社交敏感性
     */
    @Excel(name = "15. Polite & Tactful")
    private String P_Polite18;
 
    /**
     * 压力管理
     */
    @Excel(name = "16. Managing Stress")
    private String P_ManStr20;
 
    /**
     * 自信/弹性
     */
    @Excel(name = "17. Self-Confidence")
    private String P_Confid21;
 
    /**
     * 自夸T2
     */
    @Excel(name = "18. ISP_T2")
    private String P_SDE23;
 
    /**
     * 印象管控T2
     */
    @Excel(name = "19. IM_T2")
    private String P_IM24;
 
    /**
     * 答题不一致性T2
     */
    @Excel(name = "20. Inconsistency_T2")
    private String P_INCON25;
 
    /**
     * 开放性
     */
    @Excel(name = "21. Openness")
    private String P_Open26;
 
    /**
     * 认真负责性
     */
    @Excel(name = "22. Conscientiousness")
    private String P_Consci27;
 
    /**
     * 外向性
     */
    @Excel(name = "23. Extroversion")
    private String P_Extrov28;
 
    /**
     * 亲和性
     */
    @Excel(name = "24. Agreeableness")
    private String P_Agree29;
 
    /**
     * 情绪稳定性
     */
    @Excel(name = "25. Emotional Stability")
    private String P_EmSt30;
 
    /**
     * 非常不同意
     */
    @Excel(name = "Strongly Disagree%")
    private String STDA;
 
    /**
     * 不同意
     */
    @Excel(name = "Disagree%")
    private String DA;
 
    /**
     * 略微不同意
     */
    @Excel(name = "Slightly Disagree%")
    private String SLDA;
 
    /**
     * 略微同意
     */
    @Excel(name = "Slightly Agree%")
    private String SLAG;
 
    /**
     * 同意
     */
    @Excel(name = "Agree%")
    private String AG;
 
    /**
     * 非常同意
     */
    @Excel(name = "Strongly Agree%")
    private String STAG;
}