feat(syslog): 操作日志和登录日志记录操作人密级

sys_log 新增 user_security_level 列,取值与 sys_user.user_security_level 一致
(字典:3非密/4一般/5重要),LogDTO/SysLog 实体同步补充字段。
This commit is contained in:
wsm
2026-08-05 09:59:38 +08:00
parent e228152fad
commit 20b76afa02
7 changed files with 23 additions and 3 deletions
@@ -120,4 +120,9 @@ public class SysLog implements Serializable {
*/
private Integer tenantId;
/**
* 操作人密级(3非密,4一般,5重要)
*/
private Integer userSecurityLevel;
}