1.角色接口

This commit is contained in:
张松
2025-02-10 15:43:54 +08:00
parent 90f8472fcb
commit 3afbb1c2c4
16 changed files with 251 additions and 11 deletions

View File

@@ -13,7 +13,8 @@ public enum CzgRespCode {
RECORD_NOT_EXIST(601, "记录不存在"),
RECORD_EXISTED(602, "记录已存在"),
PARAM_ERROR(603, "参数错误"),
UNAUTHORIZED(401, "未授权"),;
UNAUTHORIZED(401, "未授权"),
UN_PERMISSION(402, "无此接口权限"),;
private final int code;
private final String msg;