From 55f7e6cdbd00b0ab4a98fb8edde83e16a423baaa Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Wed, 29 Apr 2026 15:17:36 +0800
Subject: [PATCH] 修改minio配置
---
multi-system/src/main/java/com/gkhy/exam/system/domain/ExExamRecord.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/ExExamRecord.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/ExExamRecord.java
index 0975c78..8a4979e 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/domain/ExExamRecord.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/ExExamRecord.java
@@ -13,6 +13,7 @@
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
+import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
@@ -57,6 +58,10 @@
@ApiModelProperty(value = "课程名称",required = true)
@TableField("course_name")
private String courseName;
+
+ @ApiModelProperty(value = "培训时间")
+ @TableField("plan_date")
+ private LocalDate planDate;
@NotNull(message = "培训等级不能为空")
@ApiModelProperty(value = "培训等级(1公司级 2部门级 3车间级 默认1)",required = true)
@@ -113,4 +118,8 @@
@TableField(exist = false)
private List<RecordFile> files;
+ @ApiModelProperty("计划年份")
+ @TableField(exist = false)
+ private String planYear;
+
}
--
Gitblit v1.9.2