package com.qianwen.smartman.modules.system.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/QuickCreationUserVO.class */
|
public class QuickCreationUserVO implements Serializable {
|
@ApiModelProperty("员工id")
|
private String employeeId;
|
@ApiModelProperty("用户账号,前端将名字转成拼音小写")
|
private String account;
|
@ApiModelProperty("用户姓名")
|
private String username;
|
|
public QuickCreationUserVO setEmployeeId(final String employeeId) {
|
this.employeeId = employeeId;
|
return this;
|
}
|
|
public QuickCreationUserVO setAccount(final String account) {
|
this.account = account;
|
return this;
|
}
|
|
public QuickCreationUserVO setUsername(final String username) {
|
this.username = username;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof QuickCreationUserVO) {
|
QuickCreationUserVO other = (QuickCreationUserVO) o;
|
if (other.canEqual(this)) {
|
Object this$employeeId = getEmployeeId();
|
Object other$employeeId = other.getEmployeeId();
|
if (this$employeeId == null) {
|
if (other$employeeId != null) {
|
return false;
|
}
|
} else if (!this$employeeId.equals(other$employeeId)) {
|
return false;
|
}
|
Object this$account = getAccount();
|
Object other$account = other.getAccount();
|
if (this$account == null) {
|
if (other$account != null) {
|
return false;
|
}
|
} else if (!this$account.equals(other$account)) {
|
return false;
|
}
|
Object this$username = getUsername();
|
Object other$username = other.getUsername();
|
return this$username == null ? other$username == null : this$username.equals(other$username);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof QuickCreationUserVO;
|
}
|
|
public int hashCode() {
|
Object $employeeId = getEmployeeId();
|
int result = (1 * 59) + ($employeeId == null ? 43 : $employeeId.hashCode());
|
Object $account = getAccount();
|
int result2 = (result * 59) + ($account == null ? 43 : $account.hashCode());
|
Object $username = getUsername();
|
return (result2 * 59) + ($username == null ? 43 : $username.hashCode());
|
}
|
|
public String toString() {
|
return "QuickCreationUserVO(employeeId=" + getEmployeeId() + ", account=" + getAccount() + ", username=" + getUsername() + ")";
|
}
|
|
public String getEmployeeId() {
|
return this.employeeId;
|
}
|
|
public String getAccount() {
|
return this.account;
|
}
|
|
public String getUsername() {
|
return this.username;
|
}
|
}
|