| | |
| | | |
| | | import lombok.Data; |
| | | import org.springblade.modules.exam.entity.ExamScore; |
| | | import org.springblade.modules.exam.entity.ExamSubjectOption; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 试卷id |
| | | * 公司名称 |
| | | */ |
| | | private String companyName; |
| | | |
| | | /** |
| | | * 考试id,提交成绩时用 |
| | | */ |
| | | private Long papersId; |
| | | |
| | |
| | | * 考勤提交的结果 |
| | | */ |
| | | private List<ExamResultVO> examResultVOS; |
| | | |
| | | /** |
| | | * 考试类型 |
| | | */ |
| | | private Integer examType; |
| | | |
| | | |
| | | /** |
| | | * 是否考试 1:否 2:是,考试结束 3:考试中 |
| | | */ |
| | | private Integer isExam; |
| | | |
| | | /** |
| | | * 用户名 |
| | | */ |
| | | private String account; |
| | | |
| | | /** |
| | | * 部门id |
| | | */ |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * 培训公司id |
| | | */ |
| | | private Long trainUnitId; |
| | | |
| | | |
| | | private String realName; |
| | | |
| | | private String examName; |
| | | |
| | | } |