liriming
2025-03-20 b44442b2168828d50d1fdf484c4187073bf099f6
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;
}