package com.qianwen.smartman.modules.system.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @ApiModel(description = "国际化信息查询对象") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/I18nDataQueryDTO.class */ public class I18nDataQueryDTO { private static final long serialVersionUID = 1; @ApiModelProperty("国际化标识") private String code; @ApiModelProperty("前端输入狂,文本信息或者备注信息") private String condition; @ApiModelProperty("语言标签") private String languageTag; public void setCode(final String code) { this.code = code; } public void setCondition(final String condition) { this.condition = condition; } public void setLanguageTag(final String languageTag) { this.languageTag = languageTag; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof I18nDataQueryDTO) { I18nDataQueryDTO other = (I18nDataQueryDTO) o; if (other.canEqual(this)) { Object this$code = getCode(); Object other$code = other.getCode(); if (this$code == null) { if (other$code != null) { return false; } } else if (!this$code.equals(other$code)) { return false; } Object this$condition = getCondition(); Object other$condition = other.getCondition(); if (this$condition == null) { if (other$condition != null) { return false; } } else if (!this$condition.equals(other$condition)) { return false; } Object this$languageTag = getLanguageTag(); Object other$languageTag = other.getLanguageTag(); return this$languageTag == null ? other$languageTag == null : this$languageTag.equals(other$languageTag); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof I18nDataQueryDTO; } public int hashCode() { Object $code = getCode(); int result = (1 * 59) + ($code == null ? 43 : $code.hashCode()); Object $condition = getCondition(); int result2 = (result * 59) + ($condition == null ? 43 : $condition.hashCode()); Object $languageTag = getLanguageTag(); return (result2 * 59) + ($languageTag == null ? 43 : $languageTag.hashCode()); } public String toString() { return "I18nDataQueryDTO(code=" + getCode() + ", condition=" + getCondition() + ", languageTag=" + getLanguageTag() + ")"; } public String getCode() { return this.code; } public String getCondition() { return this.condition; } public String getLanguageTag() { return this.languageTag; } }