From dca2532f01dac86be25ad09fa9ee8035bccdca6a Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Sat, 27 Nov 2021 17:11:33 +0800
Subject: [PATCH] 1.部门tree修改 2.用户查询修改 3.培训报名年龄拦截
---
src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java | 29 +++++++++++++++++++++++++++--
1 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java b/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
index 36f9f0f..761ef4a 100644
--- a/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
+++ b/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
@@ -13,7 +13,7 @@
@EqualsAndHashCode(callSuper = true)
public class ExamPaperVO extends ExamPaper {
/**
- * 考试人员姓名
+ * 考试人员姓名/申请人名字
*/
private String realName;
@@ -33,7 +33,32 @@
private Integer sex;
/**
- * 考试 id
+ * 报名 id
*/
private Long applyId;
+
+ /**
+ * 报名人数
+ */
+ private Integer num;
+
+ /**
+ * 申请人部门名称
+ */
+ private String deptName;
+
+ /**
+ * 申请人部门id
+ */
+ private String deptId;
+
+ /**
+ * 得分
+ */
+ private Long scoreId;
+
+ /**
+ * 考试人数
+ */
+ private Integer examNum;
}
--
Gitblit v1.9.3