From 345d17cf82e1bbc1fbfbeec10193c2bed59cd674 Mon Sep 17 00:00:00 2001 From: Administrator <admin> Date: Mon, 27 Sep 2021 22:21:21 +0800 Subject: [PATCH] 注册登录,车辆,装备,枪支,招聘,培训考试修改 --- src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java | 35 +++++++++++++++++++++++++++++++++-- 1 files changed, 33 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java b/src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java index 3ead552..c763b64 100644 --- a/src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java +++ b/src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java @@ -2,7 +2,6 @@ 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; @@ -17,7 +16,12 @@ private static final long serialVersionUID = 1L; /** - * 试卷id + * 公司名称 + */ + private String companyName; + + /** + * 考试id,提交成绩时用 */ private Long papersId; @@ -25,4 +29,31 @@ * 考勤提交的结果 */ private List<ExamResultVO> examResultVOS; + + /** + * 考试类型 + */ + private Integer examType; + + + /** + * 是否考试 1:否 2:是,考试结束 3:考试中 + */ + private Integer isExam; + + /** + * 用户名 + */ + private String account; + + /** + * 部门id + */ + private Long deptId; + + /** + * 培训公司id + */ + private Long trainUnitId; + } -- Gitblit v1.9.3