yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
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.vo;
 
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CheckedTreeVO.class */
public class CheckedTreeVO {
    private List<String> menu;
    private List<String> dataScope;
    private List<String> apiScope;
    private List<String> card;
 
    public void setMenu(final List<String> menu) {
        this.menu = menu;
    }
 
    public void setDataScope(final List<String> dataScope) {
        this.dataScope = dataScope;
    }
 
    public void setApiScope(final List<String> apiScope) {
        this.apiScope = apiScope;
    }
 
    public void setCard(final List<String> card) {
        this.card = card;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CheckedTreeVO) {
            CheckedTreeVO other = (CheckedTreeVO) o;
            if (other.canEqual(this)) {
                Object this$menu = getMenu();
                Object other$menu = other.getMenu();
                if (this$menu == null) {
                    if (other$menu != null) {
                        return false;
                    }
                } else if (!this$menu.equals(other$menu)) {
                    return false;
                }
                Object this$dataScope = getDataScope();
                Object other$dataScope = other.getDataScope();
                if (this$dataScope == null) {
                    if (other$dataScope != null) {
                        return false;
                    }
                } else if (!this$dataScope.equals(other$dataScope)) {
                    return false;
                }
                Object this$apiScope = getApiScope();
                Object other$apiScope = other.getApiScope();
                if (this$apiScope == null) {
                    if (other$apiScope != null) {
                        return false;
                    }
                } else if (!this$apiScope.equals(other$apiScope)) {
                    return false;
                }
                Object this$card = getCard();
                Object other$card = other.getCard();
                return this$card == null ? other$card == null : this$card.equals(other$card);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CheckedTreeVO;
    }
 
    public int hashCode() {
        Object $menu = getMenu();
        int result = (1 * 59) + ($menu == null ? 43 : $menu.hashCode());
        Object $dataScope = getDataScope();
        int result2 = (result * 59) + ($dataScope == null ? 43 : $dataScope.hashCode());
        Object $apiScope = getApiScope();
        int result3 = (result2 * 59) + ($apiScope == null ? 43 : $apiScope.hashCode());
        Object $card = getCard();
        return (result3 * 59) + ($card == null ? 43 : $card.hashCode());
    }
 
    public String toString() {
        return "CheckedTreeVO(menu=" + getMenu() + ", dataScope=" + getDataScope() + ", apiScope=" + getApiScope() + ", card=" + getCard() + ")";
    }
 
    public List<String> getMenu() {
        return this.menu;
    }
 
    public List<String> getDataScope() {
        return this.dataScope;
    }
 
    public List<String> getApiScope() {
        return this.apiScope;
    }
 
    public List<String> getCard() {
        return this.card;
    }
}