From cc057177b2fb17aee9a173a6adbabdc578fd74c7 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 06 Dec 2021 10:30:44 +0800
Subject: [PATCH] 1.许可

---
 src/main/java/org/springblade/modules/exam/vo/ExamScoreVO.java |   47 ++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 46 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..4ef7e23 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,50 @@
 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;
+
+
+	private String realName;
+
+	private String examName;
 
 }

--
Gitblit v1.9.3