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
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
package com.qianwen.smartman.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import java.util.List;
import java.util.Map;
import com.qianwen.smartman.common.constant.DateConstant;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/LicenseDetailVO.class */
public class LicenseDetailVO {
    @ApiModelProperty("授予公司")
    private String account;
    @ApiModelProperty("授予类型")
    private String type;
    @JsonFormat(pattern = DateConstant.PATTERN_DATE)
    @ApiModelProperty("授予过期时间")
    private Date expireDate;
    @JsonFormat(pattern = DateConstant.PATTERN_DATE)
    @ApiModelProperty("授予时间")
    private Date applyDate;
    @ApiModelProperty("授予模块")
    private Map<String, List<String>> moduleNames;
 
    public void setAccount(final String account) {
        this.account = account;
    }
 
    public void setType(final String type) {
        this.type = type;
    }
 
    @JsonFormat(pattern = DateConstant.PATTERN_DATE)
    public void setExpireDate(final Date expireDate) {
        this.expireDate = expireDate;
    }
 
    @JsonFormat(pattern = DateConstant.PATTERN_DATE)
    public void setApplyDate(final Date applyDate) {
        this.applyDate = applyDate;
    }
 
    public void setModuleNames(final Map<String, List<String>> moduleNames) {
        this.moduleNames = moduleNames;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof LicenseDetailVO) {
            LicenseDetailVO other = (LicenseDetailVO) 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$moduleNames = getModuleNames();
                Object other$moduleNames = other.getModuleNames();
                return this$moduleNames == null ? other$moduleNames == null : this$moduleNames.equals(other$moduleNames);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof LicenseDetailVO;
    }
 
    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 $moduleNames = getModuleNames();
        return (result4 * 59) + ($moduleNames == null ? 43 : $moduleNames.hashCode());
    }
 
    public String toString() {
        return "LicenseDetailVO(account=" + getAccount() + ", type=" + getType() + ", expireDate=" + getExpireDate() + ", applyDate=" + getApplyDate() + ", moduleNames=" + getModuleNames() + ")";
    }
 
    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 Map<String, List<String>> getModuleNames() {
        return this.moduleNames;
    }
}