From 2d45468ce5f1dcdc27141a61bcbdf41ca98b7e42 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Sun, 18 Jul 2021 14:35:48 +0800
Subject: [PATCH] 解除绑定相关
---
src/main/java/org/springblade/modules/apply/entity/Apply.java | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/apply/entity/Apply.java b/src/main/java/org/springblade/modules/apply/entity/Apply.java
index 2f98fca..3f00d2f 100644
--- a/src/main/java/org/springblade/modules/apply/entity/Apply.java
+++ b/src/main/java/org/springblade/modules/apply/entity/Apply.java
@@ -142,4 +142,20 @@
@TableField("fail_reason")
private String failReason;
+
+ /**
+ * 考试id
+ */
+ @TableField("exam_id")
+ private Long examId;
+
+
+ /**
+ * 考试时间
+ */
+ @TableField("exam_time")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date examTime;
+
}
--
Gitblit v1.9.3