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; }