From daef9edffb73d542ff1eba4beb215ffc7b306254 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Thu, 28 Dec 2023 18:44:46 +0800
Subject: [PATCH] bug 修复

---
 src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 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..5a7799a 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 = "")
@@ -52,7 +52,7 @@
 	/** 场所ID */
 	@ApiModelProperty(value = "场所ID", example = "")
 	@TableField("place_id")
-	private Integer placeId;
+	private Long placeId;
 
 	/** 小区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