From 5f96e94e5df2c64228dded65a4116f26a06f242c Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Mon, 25 Dec 2023 13:58:49 +0800
Subject: [PATCH] bug修复
---
src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java b/src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java
index a17d1ad..41e136e 100644
--- a/src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java
+++ b/src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java
@@ -41,8 +41,8 @@
/** 主键id */
@ApiModelProperty(value = "主键ID", example = "")
- // @TableId(value = "id", type = IdType.AUTO)
- private Long id;
+ @TableId(value = "id", type = IdType.AUTO)
+ private Integer id;
/** 任务ID */
@ApiModelProperty(value = "任务ID", example = "")
@@ -114,7 +114,7 @@
/** 确认用户ID */
@ApiModelProperty(value = "确认用户ID", example = "")
@TableField("confirm_user_id")
- private Integer confirmUserId;
+ private Long confirmUserId;
/** 确认用户ID */
@ApiModelProperty(value = "确认用户ID", example = "")
--
Gitblit v1.9.3