com.swak.security.dto.UserAuthInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swak-security-jwt-boot-starter Show documentation
Show all versions of swak-security-jwt-boot-starter Show documentation
swak component of spring security jwt boot starter
The newest version!
package com.swak.security.dto;
import com.swak.common.dto.base.DTO;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class UserAuthInfo implements DTO {
/**
* 用户ID
*/
private Long userId;
/**
* 用户名
*/
private String username;
/**
* 手机号码
*/
private String mobile;
/**
* 用户密码
*/
private String password;
/**
* 用户状态(1:正常;0:禁用)
*/
private Integer status;
}