From 564392dded17bac3ee85b66227099d68800ee4e0 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期二, 09 十二月 2025 15:34:49 +0800
Subject: [PATCH] 修改功能
---
multi-system/src/main/java/com/gkhy/exam/system/domain/InternalAuditCheck.java | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/InternalAuditCheck.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/InternalAuditCheck.java
index 3dda9ca..e11ec92 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/domain/InternalAuditCheck.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/InternalAuditCheck.java
@@ -37,6 +37,9 @@
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
+ @TableField("year")
+ private String year;
+
@ApiModelProperty("企业id")
@TableField("company_id")
private Integer companyId;
@@ -57,8 +60,18 @@
@ApiModelProperty("审核时间")
@TableField("check_time")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private LocalDate checkTime;
+
+ @ApiModelProperty(value = "开始时间")
+ @TableField("start_time")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime checkTime;
+ private LocalDateTime startTime;
+
+ @ApiModelProperty(value = "结束时间")
+ @TableField("end_time")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime endTime;
@TableField("del_flag")
private Integer delFlag;
--
Gitblit v1.9.2