登录密码加密,反向解密

This commit is contained in:
spllzh
2025-08-11 20:08:20 +08:00
parent 895d6662d8
commit b390e1557d
6 changed files with 362 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
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;
}