1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.ruoyi.common.core.constant;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-05-30 10:06
| */
| public class ExceptionCodeConstants {
|
| /**
| * token失效
| */
| public static final Integer TOKEN_EXPIRE = 600;
|
| /**
| * 短信验证码无效或错误
| */
| public static final Integer PHONE_CODE_ERROR_OR_EXPIRE = 503;
|
| /**
| * 账号冻结
| */
| public static final Integer ACCOUNT_FREEZE = 502;
|
|
| }
|
|