package com.qianwen.core.excel.extend.config; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = ExcelConfigProperties.PREFIX) /* loaded from: blade-starter-excel-9.3.0.0-SNAPSHOT.jar:org/springblade/core/excel/extend/config/ExcelConfigProperties.class */ public class ExcelConfigProperties { static final String PREFIX = "excel"; private String templatePath = PREFIX; public void setTemplatePath(final String templatePath) { this.templatePath = templatePath; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ExcelConfigProperties) { ExcelConfigProperties other = (ExcelConfigProperties) o; if (other.canEqual(this)) { Object this$templatePath = getTemplatePath(); Object other$templatePath = other.getTemplatePath(); return this$templatePath == null ? other$templatePath == null : this$templatePath.equals(other$templatePath); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof ExcelConfigProperties; } public int hashCode() { Object $templatePath = getTemplatePath(); int result = (1 * 59) + ($templatePath == null ? 43 : $templatePath.hashCode()); return result; } public String toString() { return "ExcelConfigProperties(templatePath=" + getTemplatePath() + ")"; } public String getTemplatePath() { return this.templatePath; } }