|
| 1 | +package io.github.simpleauth0.repository.model; |
| 2 | + |
| 3 | +import com.baomidou.mybatisplus.annotation.TableName; |
| 4 | +import lombok.Data; |
| 5 | + |
| 6 | +import java.util.Date; |
| 7 | + |
| 8 | +/** |
| 9 | + * @author: ReLive27 |
| 10 | + * @date: 2025/8/28 23:04 |
| 11 | + */ |
| 12 | +@Data |
| 13 | +@TableName("auth0_oauth2_authorization") |
| 14 | +public class OAuth2Authorization { |
| 15 | + private String id; |
| 16 | + private String registeredClientId; |
| 17 | + private String principalName; |
| 18 | + private String authorizationGrantType; |
| 19 | + private String authorizedScopes; |
| 20 | + private String attributes; |
| 21 | + private String state; |
| 22 | + private String authorizationCodeValue; |
| 23 | + private Date authorizationCodeIssuedAt; |
| 24 | + private Date authorizationCodeExpiresAt; |
| 25 | + private String authorizationCodeMetadata; |
| 26 | + private String accessTokenValue; |
| 27 | + private Date accessTokenIssuedAt; |
| 28 | + private Date accessTokenExpiresAt; |
| 29 | + private String accessTokenMetadata; |
| 30 | + private String accessTokenType; |
| 31 | + private String accessTokenScopes; |
| 32 | + private String oidcIdTokenValue; |
| 33 | + private Date oidcIdTokenIssuedAt; |
| 34 | + private Date oidcIdTokenExpiresAt; |
| 35 | + private String oidcIdTokenMetadata; |
| 36 | + private String refreshTokenValue; |
| 37 | + private Date refreshTokenIssuedAt; |
| 38 | + private Date refreshTokenExpiresAt; |
| 39 | + private String refreshTokenMetadata; |
| 40 | +} |
0 commit comments