refactor: 移除sys_log表中的逻辑删除标识,并在DictItem实体中添加创建人和更新人ID字段

This commit is contained in:
Ray.Hao
2025-12-22 08:05:51 +08:00
parent f7ddb8e3c1
commit 34171529ef
2 changed files with 10 additions and 1 deletions

View File

@@ -50,4 +50,14 @@ public class DictItem extends BaseEntity {
* 标签类型
*/
private String tagType;
/**
* 创建人 ID
*/
private Long createBy;
/**
* 更新人 ID
*/
private Long updateBy;
}