package com.qianwen.smartman.modules.system.dto;
|
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/AppNameDesDTO.class */
|
public class AppNameDesDTO implements Serializable {
|
private static final long serialVersionUID = 627014801266789758L;
|
private String business;
|
private String desc;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/AppNameDesDTO$AppNameDesDTOBuilder.class */
|
public static class AppNameDesDTOBuilder {
|
private String business;
|
private String desc;
|
|
AppNameDesDTOBuilder() {
|
}
|
|
public AppNameDesDTOBuilder business(final String business) {
|
this.business = business;
|
return this;
|
}
|
|
public AppNameDesDTOBuilder desc(final String desc) {
|
this.desc = desc;
|
return this;
|
}
|
|
public AppNameDesDTO build() {
|
return new AppNameDesDTO(this.business, this.desc);
|
}
|
|
public String toString() {
|
return "AppNameDesDTO.AppNameDesDTOBuilder(business=" + this.business + ", desc=" + this.desc + ")";
|
}
|
}
|
|
public void setBusiness(final String business) {
|
this.business = business;
|
}
|
|
public void setDesc(final String desc) {
|
this.desc = desc;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof AppNameDesDTO) {
|
AppNameDesDTO other = (AppNameDesDTO) o;
|
if (other.canEqual(this)) {
|
Object this$business = getBusiness();
|
Object other$business = other.getBusiness();
|
if (this$business == null) {
|
if (other$business != null) {
|
return false;
|
}
|
} else if (!this$business.equals(other$business)) {
|
return false;
|
}
|
Object this$desc = getDesc();
|
Object other$desc = other.getDesc();
|
return this$desc == null ? other$desc == null : this$desc.equals(other$desc);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof AppNameDesDTO;
|
}
|
|
public int hashCode() {
|
Object $business = getBusiness();
|
int result = (1 * 59) + ($business == null ? 43 : $business.hashCode());
|
Object $desc = getDesc();
|
return (result * 59) + ($desc == null ? 43 : $desc.hashCode());
|
}
|
|
public String toString() {
|
return "AppNameDesDTO(business=" + getBusiness() + ", desc=" + getDesc() + ")";
|
}
|
|
public static AppNameDesDTOBuilder builder() {
|
return new AppNameDesDTOBuilder();
|
}
|
|
public AppNameDesDTO() {
|
}
|
|
public AppNameDesDTO(final String business, final String desc) {
|
this.business = business;
|
this.desc = desc;
|
}
|
|
public String getBusiness() {
|
return this.business;
|
}
|
|
public String getDesc() {
|
return this.desc;
|
}
|
}
|