feat(system): 添加系统配置操作日志记录功能

- 在 ConfigController 中新增日志注解,记录系统配置相关操作
- 更新 LogModuleEnum 枚举,添加 SETTING 系统配置模块
This commit is contained in:
stackcn
2024-12-05 17:55:35 +08:00
parent bc79cc8b46
commit 17c395dbc7
2 changed files with 8 additions and 2 deletions

View File

@@ -21,8 +21,8 @@ public enum LogModuleEnum {
ROLE("角色"),
MENU("菜单"),
DICT("字典"),
OTHER("其他")
;
SETTING("系统配置"),
OTHER("其他");
@JsonValue
private final String moduleName;