From fe59ae00aef5cdbc39c6d1b29c84af25071a32ff Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Fri, 10 May 2024 16:42:46 +0800
Subject: [PATCH] 防诈宣传优化
---
src/main/java/org/springblade/modules/place/entity/PlaceEntity.java | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java b/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java
index a9982db..ed15598 100644
--- a/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java
+++ b/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java
@@ -160,7 +160,7 @@
/** 创建人 */
@ApiModelProperty(value = "创建人", example = "")
- @TableField("create_user")
+ @TableField(value = "create_user",fill = FieldFill.INSERT)
private Long createUser;
/** 创建时间 */
@@ -171,7 +171,7 @@
/** 更新人 */
@ApiModelProperty(value = "更新人", example = "")
- @TableField("update_user")
+ @TableField(value = "update_user",fill = FieldFill.UPDATE)
private Long updateUser;
/** 更新时间 */
@@ -204,4 +204,14 @@
@ApiModelProperty(value = "无炸类别", example = "")
@TableField("no_explosion_category")
private Integer noExplosionCategory;
+
+ /** 场所负责人(关联用户表信息) */
+ @ApiModelProperty(value = "主体", example = "")
+ @TableField("principal_account")
+ private Long principalAccount;
+
+ /** 场所负责人(关联用户表信息) */
+ @ApiModelProperty(value = "通用", example = "")
+ @TableField("universal_account")
+ private Long universalAccount;
}
--
Gitblit v1.9.3