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
package com.qianwen.smartman.modules.system.dto;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/LicenseModuleDTO.class */
public class LicenseModuleDTO {
    private String label;
    private int value;
 
    public void setLabel(final String label) {
        this.label = label;
    }
 
    public void setValue(final int value) {
        this.value = value;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof LicenseModuleDTO) {
            LicenseModuleDTO other = (LicenseModuleDTO) o;
            if (other.canEqual(this) && getValue() == other.getValue()) {
                Object this$label = getLabel();
                Object other$label = other.getLabel();
                return this$label == null ? other$label == null : this$label.equals(other$label);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof LicenseModuleDTO;
    }
 
    public int hashCode() {
        int result = (1 * 59) + getValue();
        Object $label = getLabel();
        return (result * 59) + ($label == null ? 43 : $label.hashCode());
    }
 
    public String toString() {
        return "LicenseModuleDTO(label=" + getLabel() + ", value=" + getValue() + ")";
    }
 
    public String getLabel() {
        return this.label;
    }
 
    public int getValue() {
        return this.value;
    }
}