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;
|
}
|