Pre Merge pull request !697 from 唐振超/dev

This commit is contained in:
唐振超 2025-06-16 06:27:57 +00:00 committed by Gitee
commit 4b4b995b67
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 8 additions and 8 deletions

View File

@ -28,43 +28,43 @@ public class BaseEntity implements Serializable {
*/ */
@JsonIgnore @JsonIgnore
@TableField(exist = false) @TableField(exist = false)
private String searchValue; protected String searchValue;
/** /**
* 创建部门 * 创建部门
*/ */
@TableField(fill = FieldFill.INSERT) @TableField(fill = FieldFill.INSERT)
private Long createDept; protected Long createDept;
/** /**
* 创建者 * 创建者
*/ */
@TableField(fill = FieldFill.INSERT) @TableField(fill = FieldFill.INSERT)
private Long createBy; protected Long createBy;
/** /**
* 创建时间 * 创建时间
*/ */
@TableField(fill = FieldFill.INSERT) @TableField(fill = FieldFill.INSERT)
private Date createTime; protected Date createTime;
/** /**
* 更新者 * 更新者
*/ */
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.INSERT_UPDATE)
private Long updateBy; protected Long updateBy;
/** /**
* 更新时间 * 更新时间
*/ */
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateTime; protected Date updateTime;
/** /**
* 请求参数 * 请求参数
*/ */
@JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonInclude(JsonInclude.Include.NON_EMPTY)
@TableField(exist = false) @TableField(exist = false)
private Map<String, Object> params = new HashMap<>(); protected Map<String, Object> params = new HashMap<>();
} }

View File

@ -16,6 +16,6 @@ public class TenantEntity extends BaseEntity {
/** /**
* 租户编号 * 租户编号
*/ */
private String tenantId; protected String tenantId;
} }