All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.swak.security.dto.UserAuthInfo Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy