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
package com.qianwen.smartman.modules.system.dto;
 
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/MenuDTO.class */
public class MenuDTO implements Serializable {
    private static final long serialVersionUID = 1;
    private String alias;
    private String path;
 
    public void setAlias(final String alias) {
        this.alias = alias;
    }
 
    public void setPath(final String path) {
        this.path = path;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof MenuDTO) {
            MenuDTO other = (MenuDTO) o;
            if (other.canEqual(this)) {
                Object this$alias = getAlias();
                Object other$alias = other.getAlias();
                if (this$alias == null) {
                    if (other$alias != null) {
                        return false;
                    }
                } else if (!this$alias.equals(other$alias)) {
                    return false;
                }
                Object this$path = getPath();
                Object other$path = other.getPath();
                return this$path == null ? other$path == null : this$path.equals(other$path);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof MenuDTO;
    }
 
    public int hashCode() {
        Object $alias = getAlias();
        int result = (1 * 59) + ($alias == null ? 43 : $alias.hashCode());
        Object $path = getPath();
        return (result * 59) + ($path == null ? 43 : $path.hashCode());
    }
 
    public String toString() {
        return "MenuDTO(alias=" + getAlias() + ", path=" + getPath() + ")";
    }
 
    public String getAlias() {
        return this.alias;
    }
 
    public String getPath() {
        return this.path;
    }
}