潘志宝
2025-03-20 d1fa57ac4d73d1424acd06d42f258d9982ae6739
1
2
3
4
5
6
7
8
9
10
11
package com.iailab.sdk.auth.client.dto;
 
import lombok.Data;
 
@Data
public class TokenDTO {
    private String accessToken;
    private String refreshToken;
    private Long expiresTime;
    private String tokenType;
}