yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
package com.qianwen.smartman.modules.smis.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import javax.validation.constraints.Email;
import javax.validation.constraints.NotBlank;
/**
 * 系统初始化vo(在前端init界面提交的配置数据)
 */
public class InitSettingVO implements Serializable {
    private static final long serialVersionUID = 6115052904161316657L;
    @NotBlank(message = "账号不能为空")
    @ApiModelProperty("账号")
    private String account;
    @NotBlank(message = "密码不能为空")
    @ApiModelProperty("密码")
    private String password;
    @NotBlank(message = "确认密码不能为空")
    @ApiModelProperty("确认密码")
    private String confirmPassword;
    @Email
    @ApiModelProperty("邮件")
    private String email;
    @ApiModelProperty("app集合")
    private List<Integer> appList;
    @NotBlank(message = "企业名称不能为空")
    @ApiModelProperty("企业名称")
    private String enterpriseName;
    @ApiModelProperty(name = "ossUrl")
    private String ossUrl;
    @ApiModelProperty("access-key")
    private String accessKey;
    @ApiModelProperty("secret-key")
    private String secretKey;
    @ApiModelProperty("看板地址")
    private String kanbanUrl;
    @ApiModelProperty("定时任务地址")
    private String xxlJobUrl;
    @ApiModelProperty("DMP链接")
    private String dmpUrl;
    @ApiModelProperty("积木报表链接")
    private String jumuReportUrl;
    @ApiModelProperty("应用")
    private Map<String, String> applicationList;
 
    public void setAccount(final String account) {
        this.account = account;
    }
 
    public void setPassword(final String password) {
        this.password = password;
    }
 
    public void setConfirmPassword(final String confirmPassword) {
        this.confirmPassword = confirmPassword;
    }
 
    public void setEmail(final String email) {
        this.email = email;
    }
 
    public void setAppList(final List<Integer> appList) {
        this.appList = appList;
    }
 
    public void setEnterpriseName(final String enterpriseName) {
        this.enterpriseName = enterpriseName;
    }
 
    public void setOssUrl(final String ossUrl) {
        this.ossUrl = ossUrl;
    }
 
    public void setAccessKey(final String accessKey) {
        this.accessKey = accessKey;
    }
 
    public void setSecretKey(final String secretKey) {
        this.secretKey = secretKey;
    }
 
    public void setKanbanUrl(final String kanbanUrl) {
        this.kanbanUrl = kanbanUrl;
    }
 
    public void setXxlJobUrl(final String xxlJobUrl) {
        this.xxlJobUrl = xxlJobUrl;
    }
 
    public void setDmpUrl(final String dmpUrl) {
        this.dmpUrl = dmpUrl;
    }
 
    public void setJumuReportUrl(final String jumuReportUrl) {
        this.jumuReportUrl = jumuReportUrl;
    }
 
    public void setApplicationList(final Map<String, String> applicationList) {
        this.applicationList = applicationList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof InitSettingVO) {
            InitSettingVO other = (InitSettingVO) 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$password = getPassword();
                Object other$password = other.getPassword();
                if (this$password == null) {
                    if (other$password != null) {
                        return false;
                    }
                } else if (!this$password.equals(other$password)) {
                    return false;
                }
                Object this$confirmPassword = getConfirmPassword();
                Object other$confirmPassword = other.getConfirmPassword();
                if (this$confirmPassword == null) {
                    if (other$confirmPassword != null) {
                        return false;
                    }
                } else if (!this$confirmPassword.equals(other$confirmPassword)) {
                    return false;
                }
                Object this$email = getEmail();
                Object other$email = other.getEmail();
                if (this$email == null) {
                    if (other$email != null) {
                        return false;
                    }
                } else if (!this$email.equals(other$email)) {
                    return false;
                }
                Object this$appList = getAppList();
                Object other$appList = other.getAppList();
                if (this$appList == null) {
                    if (other$appList != null) {
                        return false;
                    }
                } else if (!this$appList.equals(other$appList)) {
                    return false;
                }
                Object this$enterpriseName = getEnterpriseName();
                Object other$enterpriseName = other.getEnterpriseName();
                if (this$enterpriseName == null) {
                    if (other$enterpriseName != null) {
                        return false;
                    }
                } else if (!this$enterpriseName.equals(other$enterpriseName)) {
                    return false;
                }
                Object this$ossUrl = getOssUrl();
                Object other$ossUrl = other.getOssUrl();
                if (this$ossUrl == null) {
                    if (other$ossUrl != null) {
                        return false;
                    }
                } else if (!this$ossUrl.equals(other$ossUrl)) {
                    return false;
                }
                Object this$accessKey = getAccessKey();
                Object other$accessKey = other.getAccessKey();
                if (this$accessKey == null) {
                    if (other$accessKey != null) {
                        return false;
                    }
                } else if (!this$accessKey.equals(other$accessKey)) {
                    return false;
                }
                Object this$secretKey = getSecretKey();
                Object other$secretKey = other.getSecretKey();
                if (this$secretKey == null) {
                    if (other$secretKey != null) {
                        return false;
                    }
                } else if (!this$secretKey.equals(other$secretKey)) {
                    return false;
                }
                Object this$kanbanUrl = getKanbanUrl();
                Object other$kanbanUrl = other.getKanbanUrl();
                if (this$kanbanUrl == null) {
                    if (other$kanbanUrl != null) {
                        return false;
                    }
                } else if (!this$kanbanUrl.equals(other$kanbanUrl)) {
                    return false;
                }
                Object this$xxlJobUrl = getXxlJobUrl();
                Object other$xxlJobUrl = other.getXxlJobUrl();
                if (this$xxlJobUrl == null) {
                    if (other$xxlJobUrl != null) {
                        return false;
                    }
                } else if (!this$xxlJobUrl.equals(other$xxlJobUrl)) {
                    return false;
                }
                Object this$dmpUrl = getDmpUrl();
                Object other$dmpUrl = other.getDmpUrl();
                if (this$dmpUrl == null) {
                    if (other$dmpUrl != null) {
                        return false;
                    }
                } else if (!this$dmpUrl.equals(other$dmpUrl)) {
                    return false;
                }
                Object this$jumuReportUrl = getJumuReportUrl();
                Object other$jumuReportUrl = other.getJumuReportUrl();
                if (this$jumuReportUrl == null) {
                    if (other$jumuReportUrl != null) {
                        return false;
                    }
                } else if (!this$jumuReportUrl.equals(other$jumuReportUrl)) {
                    return false;
                }
                Object this$applicationList = getApplicationList();
                Object other$applicationList = other.getApplicationList();
                return this$applicationList == null ? other$applicationList == null : this$applicationList.equals(other$applicationList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof InitSettingVO;
    }
 
    public int hashCode() {
        Object $account = getAccount();
        int result = (1 * 59) + ($account == null ? 43 : $account.hashCode());
        Object $password = getPassword();
        int result2 = (result * 59) + ($password == null ? 43 : $password.hashCode());
        Object $confirmPassword = getConfirmPassword();
        int result3 = (result2 * 59) + ($confirmPassword == null ? 43 : $confirmPassword.hashCode());
        Object $email = getEmail();
        int result4 = (result3 * 59) + ($email == null ? 43 : $email.hashCode());
        Object $appList = getAppList();
        int result5 = (result4 * 59) + ($appList == null ? 43 : $appList.hashCode());
        Object $enterpriseName = getEnterpriseName();
        int result6 = (result5 * 59) + ($enterpriseName == null ? 43 : $enterpriseName.hashCode());
        Object $ossUrl = getOssUrl();
        int result7 = (result6 * 59) + ($ossUrl == null ? 43 : $ossUrl.hashCode());
        Object $accessKey = getAccessKey();
        int result8 = (result7 * 59) + ($accessKey == null ? 43 : $accessKey.hashCode());
        Object $secretKey = getSecretKey();
        int result9 = (result8 * 59) + ($secretKey == null ? 43 : $secretKey.hashCode());
        Object $kanbanUrl = getKanbanUrl();
        int result10 = (result9 * 59) + ($kanbanUrl == null ? 43 : $kanbanUrl.hashCode());
        Object $xxlJobUrl = getXxlJobUrl();
        int result11 = (result10 * 59) + ($xxlJobUrl == null ? 43 : $xxlJobUrl.hashCode());
        Object $dmpUrl = getDmpUrl();
        int result12 = (result11 * 59) + ($dmpUrl == null ? 43 : $dmpUrl.hashCode());
        Object $jumuReportUrl = getJumuReportUrl();
        int result13 = (result12 * 59) + ($jumuReportUrl == null ? 43 : $jumuReportUrl.hashCode());
        Object $applicationList = getApplicationList();
        return (result13 * 59) + ($applicationList == null ? 43 : $applicationList.hashCode());
    }
 
    public String toString() {
        return "InitSettingVO(account=" + getAccount() + ", password=" + getPassword() + ", confirmPassword=" + getConfirmPassword() + ", email=" + getEmail() + ", appList=" + getAppList() + ", enterpriseName=" + getEnterpriseName() + ", ossUrl=" + getOssUrl() + ", accessKey=" + getAccessKey() + ", secretKey=" + getSecretKey() + ", kanbanUrl=" + getKanbanUrl() + ", xxlJobUrl=" + getXxlJobUrl() + ", dmpUrl=" + getDmpUrl() + ", jumuReportUrl=" + getJumuReportUrl() + ", applicationList=" + getApplicationList() + ")";
    }
 
    public String getAccount() {
        return this.account;
    }
 
    public String getPassword() {
        return this.password;
    }
 
    public String getConfirmPassword() {
        return this.confirmPassword;
    }
 
    public String getEmail() {
        return this.email;
    }
 
    public List<Integer> getAppList() {
        return this.appList;
    }
 
    public String getEnterpriseName() {
        return this.enterpriseName;
    }
 
    public String getOssUrl() {
        return this.ossUrl;
    }
 
    public String getAccessKey() {
        return this.accessKey;
    }
 
    public String getSecretKey() {
        return this.secretKey;
    }
 
    public String getKanbanUrl() {
        return this.kanbanUrl;
    }
 
    public String getXxlJobUrl() {
        return this.xxlJobUrl;
    }
 
    public String getDmpUrl() {
        return this.dmpUrl;
    }
 
    public String getJumuReportUrl() {
        return this.jumuReportUrl;
    }
 
    public Map<String, String> getApplicationList() {
        return this.applicationList;
    }
}