feat(theme): 新增键盘主题风格管理功能

新增 Controller/Service/Mapper/VO 等全套模块,支持主题风格分页、保存及异常错误码定义
This commit is contained in:
2025-12-24 13:56:55 +08:00
parent 2a455715d1
commit f60c09cde6
12 changed files with 434 additions and 0 deletions

View File

@@ -73,4 +73,5 @@ public interface ErrorCodeConstants {
// ========== 键盘用户 1-001-202-000 ==========
ErrorCode KEYBOARD_USER_NOT_EXISTS = new ErrorCode(1_001_202_000, "键盘用户不存在");
ErrorCode THEMES_NOT_EXISTS = new ErrorCode(1_001_202_001, "键盘皮肤不存在");
ErrorCode KEYBOARD_THEME_STYLES_NOT_EXISTS = new ErrorCode(1_001_202_002, "主题风格不存在");
}