mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
调整 yudao-module-system 的枚举包
This commit is contained in:
parent
d2636a7787
commit
cd919daf64
@ -41,7 +41,7 @@
|
|||||||
<artifactId>yudao-framework</artifactId>
|
<artifactId>yudao-framework</artifactId>
|
||||||
<description>
|
<description>
|
||||||
该包是技术组件,每个子包,代表一个组件。每个组件包括两部分:
|
该包是技术组件,每个子包,代表一个组件。每个组件包括两部分:
|
||||||
1. core 包:是该组件的核心分装
|
1. core 包:是该组件的核心封装
|
||||||
2. config 包:是该组件基于 Spring 的配置
|
2. config 包:是该组件基于 Spring 的配置
|
||||||
|
|
||||||
技术组件,也分成两类:
|
技术组件,也分成两类:
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.controller.admin.user;
|
||||||
|
|
||||||
|
public class UserController {
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package cn.iocoder.yudao.module.system.controller.app.dict;
|
||||||
|
|
||||||
|
public class AppDictDataController {
|
||||||
|
}
|
@ -1,29 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.enums.logger;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 登录日志的类型枚举
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@AllArgsConstructor
|
|
||||||
public enum LoginLogTypeEnum {
|
|
||||||
|
|
||||||
LOGIN_USERNAME(100), // 使用账号登录
|
|
||||||
LOGIN_SOCIAL(101), // 使用社交登录
|
|
||||||
LOGIN_MOCK(102), // 使用 Mock 登录
|
|
||||||
LOGIN_MOBILE(103), // 使用手机登陆
|
|
||||||
LOGIN_SMS(104), // 使用短信登陆
|
|
||||||
|
|
||||||
LOGOUT_SELF(200), // 自己主动登出
|
|
||||||
LOGOUT_TIMEOUT(201), // 超时登出
|
|
||||||
LOGOUT_DELETE(202), // 强制退出
|
|
||||||
;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 日志类型
|
|
||||||
*/
|
|
||||||
private final Integer type;
|
|
||||||
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.enums.logger;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 登录结果的枚举类
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@AllArgsConstructor
|
|
||||||
public enum LoginResultEnum {
|
|
||||||
|
|
||||||
SUCCESS(0), // 成功
|
|
||||||
BAD_CREDENTIALS(10), // 账号或密码不正确
|
|
||||||
USER_DISABLED(20), // 用户被禁用
|
|
||||||
CAPTCHA_NOT_FOUND(30), // 图片验证码不存在
|
|
||||||
CAPTCHA_CODE_ERROR(31), // 图片验证码不正确
|
|
||||||
|
|
||||||
UNKNOWN_ERROR(100), // 未知异常
|
|
||||||
;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 结果
|
|
||||||
*/
|
|
||||||
private final Integer result;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user