mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 15:43:54 +08:00
26 lines
476 B
Java
26 lines
476 B
Java
package xiaozhi.common.page;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 令牌信息
|
|
*
|
|
* @author Jack
|
|
*/
|
|
@Data
|
|
@Schema(description = "令牌信息")
|
|
public class TokenDTO implements Serializable {
|
|
|
|
@Schema(description = "密码")
|
|
private String token;
|
|
|
|
@Schema(description = "过期时间")
|
|
private int expire;
|
|
|
|
@Schema(description = "客户端指纹")
|
|
private String clientHash;
|
|
}
|