feat(keyboard): 新增键盘用户管理模块

新增 keyboard-server 子模块,含用户 DO/Mapper/Service/Controller 全套代码;
补充错误码 KEYBOARD_USER_NOT_EXISTS;
主工程引入 keyboard-server 依赖并扩展包扫描路径。
This commit is contained in:
2025-12-23 21:39:38 +08:00
parent 368639f275
commit 6394818d6b
16 changed files with 655 additions and 14 deletions

View File

@@ -69,4 +69,7 @@ public interface ErrorCodeConstants {
ErrorCode DEMO03_GRADE_NOT_EXISTS = new ErrorCode(1_001_201_009, "学生班级不存在");
ErrorCode DEMO03_GRADE_EXISTS = new ErrorCode(1_001_201_010, "学生班级已存在");
// ========== 键盘用户 1-001-202-000 ==========
ErrorCode KEYBOARD_USER_NOT_EXISTS = new ErrorCode(1_001_202_000, "键盘用户不存在");
}