- 增加:用户 address 错误码

This commit is contained in:
cherishsince 2020-05-01 10:47:59 +08:00
parent 84f94459e1
commit 16d5bc3cf7
1 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,10 @@ public enum SystemErrorCodeEnum implements ServiceExceptionUtil.Enumerable {
AUTHORIZATION_DEMO_PERMISSION_DENY(1002008002, "演示账号暂不允许写操作。欢迎加入我们的交流群http://t.cn/EKEr5WE"),
AUTHORIZATION_ROLE_ASSIGN_RESOURCE_NOT_EXISTS(1002004001, "分配角色资源时,有资源不存在"),
// ========== 用户地址 ==========
USER_ADDRESS_NOT_EXISTENT(1001004000, "用户地址不存在!"),
USER_ADDRESS_IS_DELETED(1001004001, "用户地址已被删除!"),
USER_GET_ADDRESS_NOT_EXISTS(1001004002, "获取的地址不存在!"),
;