From 8e8c3113eea4c29a6c5a23ca35c4d460e81f3465 Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Thu, 24 Feb 2022 09:47:03 +0800
Subject: [PATCH] 暂停模拟考试后,继续考试修改,状态修改为考试中,题目查询按本次模拟考试题目排序,接口放行
---
src/main/java/org/springblade/modules/accreditation/entity/AccreditationRecords.java | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/accreditation/entity/AccreditationRecords.java b/src/main/java/org/springblade/modules/accreditation/entity/AccreditationRecords.java
index 6923361..f002356 100644
--- a/src/main/java/org/springblade/modules/accreditation/entity/AccreditationRecords.java
+++ b/src/main/java/org/springblade/modules/accreditation/entity/AccreditationRecords.java
@@ -66,4 +66,41 @@
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date accreditationTime;
+ /**
+ * 状态 1:上岗证 2:证书
+ */
+ private Integer type;
+
+ /**
+ * 审核状态 1:待审核 2:审核通过 3:审核不通过
+ */
+ @TableField("audit_status")
+ private Integer auditStatus;
+
+ /**
+ * 审核时间
+ */
+ @TableField("audit_time")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date auditTime;
+
+ /**
+ * 审核详情
+ */
+ @TableField("audit_detail")
+ private String auditDetail;
+
+ /**
+ * 审核人员id
+ */
+ @TableField("audit_user")
+ private Long auditUser;
+
+ /**
+ * 证书打印时间
+ */
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date paperTime;
}
--
Gitblit v1.9.3