From 8853292babb2ad94de4a3207966f1e83b767cd2d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sun, 17 Sep 2023 16:38:34 +0800
Subject: [PATCH] 新增流程节点进程查询接口
---
src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java | 72 +++++++++++++++++++++++++++++++++++
1 files changed, 71 insertions(+), 1 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 7dead06..f6650f9 100644
--- a/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
+++ b/src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
@@ -1,8 +1,12 @@
package org.springblade.modules.exam.vo;
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.modules.exam.entity.ExamPaper;
+
+import java.util.Date;
/**
* 考试类
@@ -13,7 +17,7 @@
@EqualsAndHashCode(callSuper = true)
public class ExamPaperVO extends ExamPaper {
/**
- * 考试人员姓名
+ * 考试人员姓名/申请人名字
*/
private String realName;
@@ -31,4 +35,70 @@
* 性别 1 男 2 女
*/
private Integer sex;
+
+ /**
+ * 报名 id
+ */
+ private Long applyId;
+
+ /**
+ * 报名人数
+ */
+ private Integer num;
+
+ /**
+ * 申请人部门名称
+ */
+ private String deptName;
+
+ /**
+ * 申请人部门id
+ */
+ private String deptId;
+
+ /**
+ * 得分id
+ */
+ private Long scoreId;
+
+ /**
+ * 考试人数
+ */
+ private Integer examNum;
+
+ /**
+ * 确认人员姓名
+ */
+ private String confirmUserName;
+
+ /**
+ * 计算截止时间
+ */
+ private String deadline;
+
+ /**
+ * 考试状态
+ */
+ private Integer isExam;
+
+ /**
+ * 考试开始时间
+ */
+ private Date examStartTime;
+
+
+ /**
+ * 用户id
+ */
+ private String userId;
+
+ /**
+ * 考试时间
+ */
+ private String examTime;
+
+ /**
+ * 学校名称
+ */
+ private String schoolName;
}
--
Gitblit v1.9.3