This commit is contained in:
cuijiawang
2025-09-18 10:27:31 +08:00
parent 023d35fecd
commit c0c2e492b8

View File

@@ -14,31 +14,31 @@ public class LoginVO {
/**
* 授权令牌
*/
@JsonProperty("access_token")
// @JsonProperty("access_token")
private String accessToken;
/**
* 刷新令牌
*/
@JsonProperty("refresh_token")
// @JsonProperty("refresh_token")
private String refreshToken;
/**
* 授权令牌 access_token 的有效期
*/
@JsonProperty("expire_in")
// @JsonProperty("expire_in")
private Long expireIn;
/**
* 刷新令牌 refresh_token 的有效期
*/
@JsonProperty("refresh_expire_in")
// @JsonProperty("refresh_expire_in")
private Long refreshExpireIn;
/**
* 应用id
*/
@JsonProperty("client_id")
// @JsonProperty("client_id")
private String clientId;
/**