yangys
2024-04-22 86c1cb468c2b1f28ea3cf6c217ea8e2fe3323e42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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;
    }
}