From 0af331c7df1f4e3365b3cb5abd60eaaa09807513 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Thu, 16 Sep 2021 09:01:41 +0800
Subject: [PATCH] 1.社保
---
src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java | 42 +++++++++++++++++++++++++++++++++++++++++-
1 files changed, 41 insertions(+), 1 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 ab5c711..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,9 +2,9 @@
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;
/**
* 选择题选项实体类vo
@@ -15,5 +15,45 @@
public class ExamScoreVO extends ExamScore implements Serializable {
private static final long serialVersionUID = 1L;
+ /**
+ * 公司名称
+ */
+ 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;
}
--
Gitblit v1.9.3