yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package com.qianwen.smartman.modules.system.dto;
 
import java.util.Date;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/LicenseDetailDTO.class */
public class LicenseDetailDTO {
    private String account;
    private String type;
    private Date expireDate;
    private Date applyDate;
    private String mac;
    private List<Integer> modules;
 
    public void setAccount(final String account) {
        this.account = account;
    }
 
    public void setType(final String type) {
        this.type = type;
    }
 
    public void setExpireDate(final Date expireDate) {
        this.expireDate = expireDate;
    }
 
    public void setApplyDate(final Date applyDate) {
        this.applyDate = applyDate;
    }
 
    public void setMac(final String mac) {
        this.mac = mac;
    }
 
    public void setModules(final List<Integer> modules) {
        this.modules = modules;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof LicenseDetailDTO) {
            LicenseDetailDTO other = (LicenseDetailDTO) o;
            if (other.canEqual(this)) {
                Object this$account = getAccount();
                Object other$account = other.getAccount();
                if (this$account == null) {
                    if (other$account != null) {
                        return false;
                    }
                } else if (!this$account.equals(other$account)) {
                    return false;
                }
                Object this$type = getType();
                Object other$type = other.getType();
                if (this$type == null) {
                    if (other$type != null) {
                        return false;
                    }
                } else if (!this$type.equals(other$type)) {
                    return false;
                }
                Object this$expireDate = getExpireDate();
                Object other$expireDate = other.getExpireDate();
                if (this$expireDate == null) {
                    if (other$expireDate != null) {
                        return false;
                    }
                } else if (!this$expireDate.equals(other$expireDate)) {
                    return false;
                }
                Object this$applyDate = getApplyDate();
                Object other$applyDate = other.getApplyDate();
                if (this$applyDate == null) {
                    if (other$applyDate != null) {
                        return false;
                    }
                } else if (!this$applyDate.equals(other$applyDate)) {
                    return false;
                }
                Object this$mac = getMac();
                Object other$mac = other.getMac();
                if (this$mac == null) {
                    if (other$mac != null) {
                        return false;
                    }
                } else if (!this$mac.equals(other$mac)) {
                    return false;
                }
                Object this$modules = getModules();
                Object other$modules = other.getModules();
                return this$modules == null ? other$modules == null : this$modules.equals(other$modules);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof LicenseDetailDTO;
    }
 
    public int hashCode() {
        Object $account = getAccount();
        int result = (1 * 59) + ($account == null ? 43 : $account.hashCode());
        Object $type = getType();
        int result2 = (result * 59) + ($type == null ? 43 : $type.hashCode());
        Object $expireDate = getExpireDate();
        int result3 = (result2 * 59) + ($expireDate == null ? 43 : $expireDate.hashCode());
        Object $applyDate = getApplyDate();
        int result4 = (result3 * 59) + ($applyDate == null ? 43 : $applyDate.hashCode());
        Object $mac = getMac();
        int result5 = (result4 * 59) + ($mac == null ? 43 : $mac.hashCode());
        Object $modules = getModules();
        return (result5 * 59) + ($modules == null ? 43 : $modules.hashCode());
    }
 
    public String toString() {
        return "LicenseDetailDTO(account=" + getAccount() + ", type=" + getType() + ", expireDate=" + getExpireDate() + ", applyDate=" + getApplyDate() + ", mac=" + getMac() + ", modules=" + getModules() + ")";
    }
 
    public String getAccount() {
        return this.account;
    }
 
    public String getType() {
        return this.type;
    }
 
    public Date getExpireDate() {
        return this.expireDate;
    }
 
    public Date getApplyDate() {
        return this.applyDate;
    }
 
    public String getMac() {
        return this.mac;
    }
 
    public List<Integer> getModules() {
        return this.modules;
    }
}