package cc.mrbird.febs.common.core.entity.constant; /** * 请求参数常量 * * @author MrBird */ public interface ParamsConstant { /** * 验证码 key */ String VALIDATE_CODE_KEY = "key"; /** * 验证码 code */ String VALIDATE_CODE_CODE = "code"; /** * 认证类型参数 key */ String GRANT_TYPE = "grant_type"; /** * 登录类型 */ String LOGIN_TYPE = "login_type"; }