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

com.ssrs.platform.model.parm.AuthUser Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.ssrs.platform.model.parm;

import lombok.Getter;
import lombok.Setter;

import javax.validation.constraints.NotBlank;

@Getter
@Setter
public class AuthUser {

    @NotBlank(message = "用户名不能为空!")
    private String userName;

    @NotBlank(message = "密码不能为空!")
    private String password;

    private String verifyCode;

    private boolean showVerifyCode;


    @Override
    public String toString() {
        return "{userName=" + userName  + ", password= ******}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy