yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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;
    }
}