package cn.mb.cloud.auth.warpper; import lombok.Data; @Data public class OauthToken { /** * token */ private String access_token; /** * token类型 */ private String token_type; /** * 刷新token的凭证 */ private String refresh_token; /** * 有效期(秒) */ private Long expires_in; /** * 权限 */ private String scope; /** * token解码jti */ private String jti; }