dongyukun
2025-04-01 49e41fde757ce77904930641d471a5c459979d40
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;
}