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
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package com.qianwen.smartman.modules.cps.vo;
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/WorkstationInGroupVO.class */
public class WorkstationInGroupVO implements Serializable {
    private static final long serialVersionUID = 586844474639515146L;
    @JsonSerialize(using = ToStringSerializer.class)
    @ApiModelProperty(value = "工位组工位id", dataType = "Long")
    private Long id;
    @ApiModelProperty(value = "工位组工位父级id", dataType = "Long")
    private Long parentId;
    @ApiModelProperty("工位组工位父级名称")
    private String parentName;
    @ApiModelProperty(value = "工位组工位标题", dataType = "String")
    private String title;
    @ApiModelProperty(value = "是否是工位组", dataType = "Boolean")
    private Boolean isGroup;
    @ApiModelProperty(value = "是否是工位", dataType = "Boolean")
    private Boolean isWorkstation;
    @ApiModelProperty("工位组工位编号")
    private String code;
    @ApiModelProperty("组标签")
    private String groupTag;
    @ApiModelProperty("头像")
    private String avatar;
    @ApiModelProperty("是否支持文件写入  1 支持 0 不支持")
    private Integer supportCncRw;
    @ApiModelProperty("日历code")
    private String calendarCode;
    @ApiModelProperty("ftp目录")
    private String ftpCatalogue;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/WorkstationInGroupVO$WorkstationInGroupVOBuilder.class */
    public static class WorkstationInGroupVOBuilder {
        private Long id;
        private Long parentId;
        private String parentName;
        private String title;
        private Boolean isGroup;
        private Boolean isWorkstation;
        private String code;
        private String groupTag;
        private String avatar;
        private Integer supportCncRw;
        private String calendarCode;
        private String ftpCatalogue;
 
        WorkstationInGroupVOBuilder() {
        }
 
        public WorkstationInGroupVOBuilder id(final Long id) {
            this.id = id;
            return this;
        }
 
        public WorkstationInGroupVOBuilder parentId(final Long parentId) {
            this.parentId = parentId;
            return this;
        }
 
        public WorkstationInGroupVOBuilder parentName(final String parentName) {
            this.parentName = parentName;
            return this;
        }
 
        public WorkstationInGroupVOBuilder title(final String title) {
            this.title = title;
            return this;
        }
 
        public WorkstationInGroupVOBuilder isGroup(final Boolean isGroup) {
            this.isGroup = isGroup;
            return this;
        }
 
        public WorkstationInGroupVOBuilder isWorkstation(final Boolean isWorkstation) {
            this.isWorkstation = isWorkstation;
            return this;
        }
 
        public WorkstationInGroupVOBuilder code(final String code) {
            this.code = code;
            return this;
        }
 
        public WorkstationInGroupVOBuilder groupTag(final String groupTag) {
            this.groupTag = groupTag;
            return this;
        }
 
        public WorkstationInGroupVOBuilder avatar(final String avatar) {
            this.avatar = avatar;
            return this;
        }
 
        public WorkstationInGroupVOBuilder supportCncRw(final Integer supportCncRw) {
            this.supportCncRw = supportCncRw;
            return this;
        }
 
        public WorkstationInGroupVOBuilder calendarCode(final String calendarCode) {
            this.calendarCode = calendarCode;
            return this;
        }
 
        public WorkstationInGroupVOBuilder ftpCatalogue(final String ftpCatalogue) {
            this.ftpCatalogue = ftpCatalogue;
            return this;
        }
 
        public WorkstationInGroupVO build() {
            return new WorkstationInGroupVO(this.id, this.parentId, this.parentName, this.title, this.isGroup, this.isWorkstation, this.code, this.groupTag, this.avatar, this.supportCncRw, this.calendarCode, this.ftpCatalogue);
        }
 
        public String toString() {
            return "WorkstationInGroupVO.WorkstationInGroupVOBuilder(id=" + this.id + ", parentId=" + this.parentId + ", parentName=" + this.parentName + ", title=" + this.title + ", isGroup=" + this.isGroup + ", isWorkstation=" + this.isWorkstation + ", code=" + this.code + ", groupTag=" + this.groupTag + ", avatar=" + this.avatar + ", supportCncRw=" + this.supportCncRw + ", calendarCode=" + this.calendarCode + ", ftpCatalogue=" + this.ftpCatalogue + ")";
        }
    }
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setParentId(final Long parentId) {
        this.parentId = parentId;
    }
 
    public void setParentName(final String parentName) {
        this.parentName = parentName;
    }
 
    public void setTitle(final String title) {
        this.title = title;
    }
 
    public void setIsGroup(final Boolean isGroup) {
        this.isGroup = isGroup;
    }
 
    public void setIsWorkstation(final Boolean isWorkstation) {
        this.isWorkstation = isWorkstation;
    }
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setGroupTag(final String groupTag) {
        this.groupTag = groupTag;
    }
 
    public void setAvatar(final String avatar) {
        this.avatar = avatar;
    }
 
    public void setSupportCncRw(final Integer supportCncRw) {
        this.supportCncRw = supportCncRw;
    }
 
    public void setCalendarCode(final String calendarCode) {
        this.calendarCode = calendarCode;
    }
 
    public void setFtpCatalogue(final String ftpCatalogue) {
        this.ftpCatalogue = ftpCatalogue;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WorkstationInGroupVO) {
            WorkstationInGroupVO other = (WorkstationInGroupVO) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$parentId = getParentId();
                Object other$parentId = other.getParentId();
                if (this$parentId == null) {
                    if (other$parentId != null) {
                        return false;
                    }
                } else if (!this$parentId.equals(other$parentId)) {
                    return false;
                }
                Object this$isGroup = getIsGroup();
                Object other$isGroup = other.getIsGroup();
                if (this$isGroup == null) {
                    if (other$isGroup != null) {
                        return false;
                    }
                } else if (!this$isGroup.equals(other$isGroup)) {
                    return false;
                }
                Object this$isWorkstation = getIsWorkstation();
                Object other$isWorkstation = other.getIsWorkstation();
                if (this$isWorkstation == null) {
                    if (other$isWorkstation != null) {
                        return false;
                    }
                } else if (!this$isWorkstation.equals(other$isWorkstation)) {
                    return false;
                }
                Object this$supportCncRw = getSupportCncRw();
                Object other$supportCncRw = other.getSupportCncRw();
                if (this$supportCncRw == null) {
                    if (other$supportCncRw != null) {
                        return false;
                    }
                } else if (!this$supportCncRw.equals(other$supportCncRw)) {
                    return false;
                }
                Object this$parentName = getParentName();
                Object other$parentName = other.getParentName();
                if (this$parentName == null) {
                    if (other$parentName != null) {
                        return false;
                    }
                } else if (!this$parentName.equals(other$parentName)) {
                    return false;
                }
                Object this$title = getTitle();
                Object other$title = other.getTitle();
                if (this$title == null) {
                    if (other$title != null) {
                        return false;
                    }
                } else if (!this$title.equals(other$title)) {
                    return false;
                }
                Object this$code = getCode();
                Object other$code = other.getCode();
                if (this$code == null) {
                    if (other$code != null) {
                        return false;
                    }
                } else if (!this$code.equals(other$code)) {
                    return false;
                }
                Object this$groupTag = getGroupTag();
                Object other$groupTag = other.getGroupTag();
                if (this$groupTag == null) {
                    if (other$groupTag != null) {
                        return false;
                    }
                } else if (!this$groupTag.equals(other$groupTag)) {
                    return false;
                }
                Object this$avatar = getAvatar();
                Object other$avatar = other.getAvatar();
                if (this$avatar == null) {
                    if (other$avatar != null) {
                        return false;
                    }
                } else if (!this$avatar.equals(other$avatar)) {
                    return false;
                }
                Object this$calendarCode = getCalendarCode();
                Object other$calendarCode = other.getCalendarCode();
                if (this$calendarCode == null) {
                    if (other$calendarCode != null) {
                        return false;
                    }
                } else if (!this$calendarCode.equals(other$calendarCode)) {
                    return false;
                }
                Object this$ftpCatalogue = getFtpCatalogue();
                Object other$ftpCatalogue = other.getFtpCatalogue();
                return this$ftpCatalogue == null ? other$ftpCatalogue == null : this$ftpCatalogue.equals(other$ftpCatalogue);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WorkstationInGroupVO;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $parentId = getParentId();
        int result2 = (result * 59) + ($parentId == null ? 43 : $parentId.hashCode());
        Object $isGroup = getIsGroup();
        int result3 = (result2 * 59) + ($isGroup == null ? 43 : $isGroup.hashCode());
        Object $isWorkstation = getIsWorkstation();
        int result4 = (result3 * 59) + ($isWorkstation == null ? 43 : $isWorkstation.hashCode());
        Object $supportCncRw = getSupportCncRw();
        int result5 = (result4 * 59) + ($supportCncRw == null ? 43 : $supportCncRw.hashCode());
        Object $parentName = getParentName();
        int result6 = (result5 * 59) + ($parentName == null ? 43 : $parentName.hashCode());
        Object $title = getTitle();
        int result7 = (result6 * 59) + ($title == null ? 43 : $title.hashCode());
        Object $code = getCode();
        int result8 = (result7 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $groupTag = getGroupTag();
        int result9 = (result8 * 59) + ($groupTag == null ? 43 : $groupTag.hashCode());
        Object $avatar = getAvatar();
        int result10 = (result9 * 59) + ($avatar == null ? 43 : $avatar.hashCode());
        Object $calendarCode = getCalendarCode();
        int result11 = (result10 * 59) + ($calendarCode == null ? 43 : $calendarCode.hashCode());
        Object $ftpCatalogue = getFtpCatalogue();
        return (result11 * 59) + ($ftpCatalogue == null ? 43 : $ftpCatalogue.hashCode());
    }
 
    public String toString() {
        return "WorkstationInGroupVO(id=" + getId() + ", parentId=" + getParentId() + ", parentName=" + getParentName() + ", title=" + getTitle() + ", isGroup=" + getIsGroup() + ", isWorkstation=" + getIsWorkstation() + ", code=" + getCode() + ", groupTag=" + getGroupTag() + ", avatar=" + getAvatar() + ", supportCncRw=" + getSupportCncRw() + ", calendarCode=" + getCalendarCode() + ", ftpCatalogue=" + getFtpCatalogue() + ")";
    }
 
    public static WorkstationInGroupVOBuilder builder() {
        return new WorkstationInGroupVOBuilder();
    }
 
    public WorkstationInGroupVO(final Long id, final Long parentId, final String parentName, final String title, final Boolean isGroup, final Boolean isWorkstation, final String code, final String groupTag, final String avatar, final Integer supportCncRw, final String calendarCode, final String ftpCatalogue) {
        this.id = id;
        this.parentId = parentId;
        this.parentName = parentName;
        this.title = title;
        this.isGroup = isGroup;
        this.isWorkstation = isWorkstation;
        this.code = code;
        this.groupTag = groupTag;
        this.avatar = avatar;
        this.supportCncRw = supportCncRw;
        this.calendarCode = calendarCode;
        this.ftpCatalogue = ftpCatalogue;
    }
 
    public WorkstationInGroupVO() {
    }
 
    public Long getId() {
        return this.id;
    }
 
    public Long getParentId() {
        return this.parentId;
    }
 
    public String getParentName() {
        return this.parentName;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public Boolean getIsGroup() {
        return this.isGroup;
    }
 
    public Boolean getIsWorkstation() {
        return this.isWorkstation;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getGroupTag() {
        return this.groupTag;
    }
 
    public String getAvatar() {
        return this.avatar;
    }
 
    public Integer getSupportCncRw() {
        return this.supportCncRw;
    }
 
    public String getCalendarCode() {
        return this.calendarCode;
    }
 
    public String getFtpCatalogue() {
        return this.ftpCatalogue;
    }
}