package com.qianwen.smartman.modules.system.dto;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/PasswordModifyValidInfo.class */
|
public class PasswordModifyValidInfo {
|
private Integer passwordModifyType;
|
private boolean compulsoryModify;
|
private String message;
|
|
public void setPasswordModifyType(final Integer passwordModifyType) {
|
this.passwordModifyType = passwordModifyType;
|
}
|
|
public void setCompulsoryModify(final boolean compulsoryModify) {
|
this.compulsoryModify = compulsoryModify;
|
}
|
|
public void setMessage(final String message) {
|
this.message = message;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof PasswordModifyValidInfo) {
|
PasswordModifyValidInfo other = (PasswordModifyValidInfo) o;
|
if (other.canEqual(this) && isCompulsoryModify() == other.isCompulsoryModify()) {
|
Object this$passwordModifyType = getPasswordModifyType();
|
Object other$passwordModifyType = other.getPasswordModifyType();
|
if (this$passwordModifyType == null) {
|
if (other$passwordModifyType != null) {
|
return false;
|
}
|
} else if (!this$passwordModifyType.equals(other$passwordModifyType)) {
|
return false;
|
}
|
Object this$message = getMessage();
|
Object other$message = other.getMessage();
|
return this$message == null ? other$message == null : this$message.equals(other$message);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof PasswordModifyValidInfo;
|
}
|
|
public int hashCode() {
|
int result = (1 * 59) + (isCompulsoryModify() ? 79 : 97);
|
Object $passwordModifyType = getPasswordModifyType();
|
int result2 = (result * 59) + ($passwordModifyType == null ? 43 : $passwordModifyType.hashCode());
|
Object $message = getMessage();
|
return (result2 * 59) + ($message == null ? 43 : $message.hashCode());
|
}
|
|
public String toString() {
|
return "PasswordModifyValidInfo(passwordModifyType=" + getPasswordModifyType() + ", compulsoryModify=" + isCompulsoryModify() + ", message=" + getMessage() + ")";
|
}
|
|
public PasswordModifyValidInfo(final Integer passwordModifyType, final boolean compulsoryModify, final String message) {
|
this.passwordModifyType = passwordModifyType;
|
this.compulsoryModify = compulsoryModify;
|
this.message = message;
|
}
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/PasswordModifyValidInfo$PasswordModifyValidInfoBuilder.class */
|
public static class PasswordModifyValidInfoBuilder {
|
private Integer passwordModifyType;
|
private boolean compulsoryModify;
|
private String message;
|
|
PasswordModifyValidInfoBuilder() {
|
}
|
|
public PasswordModifyValidInfoBuilder passwordModifyType(final Integer passwordModifyType) {
|
this.passwordModifyType = passwordModifyType;
|
return this;
|
}
|
|
public PasswordModifyValidInfoBuilder compulsoryModify(final boolean compulsoryModify) {
|
this.compulsoryModify = compulsoryModify;
|
return this;
|
}
|
|
public PasswordModifyValidInfoBuilder message(final String message) {
|
this.message = message;
|
return this;
|
}
|
|
public PasswordModifyValidInfo build() {
|
return new PasswordModifyValidInfo(this.passwordModifyType, this.compulsoryModify, this.message);
|
}
|
|
public String toString() {
|
return "PasswordModifyValidInfo.PasswordModifyValidInfoBuilder(passwordModifyType=" + this.passwordModifyType + ", compulsoryModify=" + this.compulsoryModify + ", message=" + this.message + ")";
|
}
|
}
|
|
public PasswordModifyValidInfo() {
|
}
|
|
public static PasswordModifyValidInfoBuilder builder() {
|
return new PasswordModifyValidInfoBuilder();
|
}
|
|
public Integer getPasswordModifyType() {
|
return this.passwordModifyType;
|
}
|
|
public boolean isCompulsoryModify() {
|
return this.compulsoryModify;
|
}
|
|
public String getMessage() {
|
return this.message;
|
}
|
}
|