40 lines
659 B
Java
40 lines
659 B
Java
package com.rj.pojo.sys;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 登录响应DTO
|
|
*
|
|
* @author 系统生成
|
|
* @since 2025-08-07
|
|
*/
|
|
@Data
|
|
@Schema(description = "登录响应")
|
|
public class LoginResponse {
|
|
|
|
@Schema(description = "用户ID")
|
|
private Integer userId;
|
|
|
|
@Schema(description = "用户名")
|
|
private String userName;
|
|
|
|
@Schema(description = "邮箱")
|
|
private String email;
|
|
|
|
@Schema(description = "头像")
|
|
private String avatar;
|
|
|
|
@Schema(description = "访问令牌")
|
|
private String token;
|
|
|
|
@Schema(description = "登录时间")
|
|
private String loginTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|