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
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
package com.qianwen.smartman.modules.trace.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import javax.validation.constraints.Size;
 
@ApiModel(value = "TraceFlowSettingsVo对象", description = "流程维护")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/trace/vo/TraceFlowSettingsVO.class */
public class TraceFlowSettingsVO implements Serializable {
    @ApiModelProperty("流程编号")
    @Size(max = 40, message = "流程编号长度不能超过40")
    private String code;
    @ApiModelProperty("流程名称")
    @Size(max = 100, message = "流程名称长度不能超过100")
    private String name;
    @ApiModelProperty("流程顺序")
    private Integer flowSeq;
    @ApiModelProperty("工位类型")
    private Integer stationType;
    @ApiModelProperty(value = "工位组id", dataType = "java.lang.String")
    private Long workstationGroupId;
    @ApiModelProperty(value = "工位组id", dataType = "java.lang.String")
    private String workstationGroupName;
    @ApiModelProperty(value = "上一流程id", dataType = "java.lang.String")
    private Long preFlowId;
    @ApiModelProperty(value = "下一流程id", dataType = "java.lang.String")
    private Long nextFlowId;
    @ApiModelProperty("流程类别")
    private Integer flowType;
    @ApiModelProperty("结束流程方式")
    private Integer triggerEndFlowStyle;
    @ApiModelProperty("按质量结果下线")
    private String qualityResultOffline;
    @ApiModelProperty(value = "质量责任归属到特定流程", dataType = "java.lang.String")
    private Long qualityMakerFlowId;
    @ApiModelProperty("质量责任归属到特定流程名称")
    private String qualityMakerFlowName;
    @ApiModelProperty(value = "id", dataType = "java.lang.String")
    private Long id;
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setFlowSeq(final Integer flowSeq) {
        this.flowSeq = flowSeq;
    }
 
    public void setStationType(final Integer stationType) {
        this.stationType = stationType;
    }
 
    public void setWorkstationGroupId(final Long workstationGroupId) {
        this.workstationGroupId = workstationGroupId;
    }
 
    public void setWorkstationGroupName(final String workstationGroupName) {
        this.workstationGroupName = workstationGroupName;
    }
 
    public void setPreFlowId(final Long preFlowId) {
        this.preFlowId = preFlowId;
    }
 
    public void setNextFlowId(final Long nextFlowId) {
        this.nextFlowId = nextFlowId;
    }
 
    public void setFlowType(final Integer flowType) {
        this.flowType = flowType;
    }
 
    public void setTriggerEndFlowStyle(final Integer triggerEndFlowStyle) {
        this.triggerEndFlowStyle = triggerEndFlowStyle;
    }
 
    public void setQualityResultOffline(final String qualityResultOffline) {
        this.qualityResultOffline = qualityResultOffline;
    }
 
    public void setQualityMakerFlowId(final Long qualityMakerFlowId) {
        this.qualityMakerFlowId = qualityMakerFlowId;
    }
 
    public void setQualityMakerFlowName(final String qualityMakerFlowName) {
        this.qualityMakerFlowName = qualityMakerFlowName;
    }
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TraceFlowSettingsVO) {
            TraceFlowSettingsVO other = (TraceFlowSettingsVO) o;
            if (other.canEqual(this)) {
                Object this$flowSeq = getFlowSeq();
                Object other$flowSeq = other.getFlowSeq();
                if (this$flowSeq == null) {
                    if (other$flowSeq != null) {
                        return false;
                    }
                } else if (!this$flowSeq.equals(other$flowSeq)) {
                    return false;
                }
                Object this$stationType = getStationType();
                Object other$stationType = other.getStationType();
                if (this$stationType == null) {
                    if (other$stationType != null) {
                        return false;
                    }
                } else if (!this$stationType.equals(other$stationType)) {
                    return false;
                }
                Object this$workstationGroupId = getWorkstationGroupId();
                Object other$workstationGroupId = other.getWorkstationGroupId();
                if (this$workstationGroupId == null) {
                    if (other$workstationGroupId != null) {
                        return false;
                    }
                } else if (!this$workstationGroupId.equals(other$workstationGroupId)) {
                    return false;
                }
                Object this$preFlowId = getPreFlowId();
                Object other$preFlowId = other.getPreFlowId();
                if (this$preFlowId == null) {
                    if (other$preFlowId != null) {
                        return false;
                    }
                } else if (!this$preFlowId.equals(other$preFlowId)) {
                    return false;
                }
                Object this$nextFlowId = getNextFlowId();
                Object other$nextFlowId = other.getNextFlowId();
                if (this$nextFlowId == null) {
                    if (other$nextFlowId != null) {
                        return false;
                    }
                } else if (!this$nextFlowId.equals(other$nextFlowId)) {
                    return false;
                }
                Object this$flowType = getFlowType();
                Object other$flowType = other.getFlowType();
                if (this$flowType == null) {
                    if (other$flowType != null) {
                        return false;
                    }
                } else if (!this$flowType.equals(other$flowType)) {
                    return false;
                }
                Object this$triggerEndFlowStyle = getTriggerEndFlowStyle();
                Object other$triggerEndFlowStyle = other.getTriggerEndFlowStyle();
                if (this$triggerEndFlowStyle == null) {
                    if (other$triggerEndFlowStyle != null) {
                        return false;
                    }
                } else if (!this$triggerEndFlowStyle.equals(other$triggerEndFlowStyle)) {
                    return false;
                }
                Object this$qualityMakerFlowId = getQualityMakerFlowId();
                Object other$qualityMakerFlowId = other.getQualityMakerFlowId();
                if (this$qualityMakerFlowId == null) {
                    if (other$qualityMakerFlowId != null) {
                        return false;
                    }
                } else if (!this$qualityMakerFlowId.equals(other$qualityMakerFlowId)) {
                    return false;
                }
                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$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$name = getName();
                Object other$name = other.getName();
                if (this$name == null) {
                    if (other$name != null) {
                        return false;
                    }
                } else if (!this$name.equals(other$name)) {
                    return false;
                }
                Object this$workstationGroupName = getWorkstationGroupName();
                Object other$workstationGroupName = other.getWorkstationGroupName();
                if (this$workstationGroupName == null) {
                    if (other$workstationGroupName != null) {
                        return false;
                    }
                } else if (!this$workstationGroupName.equals(other$workstationGroupName)) {
                    return false;
                }
                Object this$qualityResultOffline = getQualityResultOffline();
                Object other$qualityResultOffline = other.getQualityResultOffline();
                if (this$qualityResultOffline == null) {
                    if (other$qualityResultOffline != null) {
                        return false;
                    }
                } else if (!this$qualityResultOffline.equals(other$qualityResultOffline)) {
                    return false;
                }
                Object this$qualityMakerFlowName = getQualityMakerFlowName();
                Object other$qualityMakerFlowName = other.getQualityMakerFlowName();
                return this$qualityMakerFlowName == null ? other$qualityMakerFlowName == null : this$qualityMakerFlowName.equals(other$qualityMakerFlowName);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TraceFlowSettingsVO;
    }
 
    public int hashCode() {
        Object $flowSeq = getFlowSeq();
        int result = (1 * 59) + ($flowSeq == null ? 43 : $flowSeq.hashCode());
        Object $stationType = getStationType();
        int result2 = (result * 59) + ($stationType == null ? 43 : $stationType.hashCode());
        Object $workstationGroupId = getWorkstationGroupId();
        int result3 = (result2 * 59) + ($workstationGroupId == null ? 43 : $workstationGroupId.hashCode());
        Object $preFlowId = getPreFlowId();
        int result4 = (result3 * 59) + ($preFlowId == null ? 43 : $preFlowId.hashCode());
        Object $nextFlowId = getNextFlowId();
        int result5 = (result4 * 59) + ($nextFlowId == null ? 43 : $nextFlowId.hashCode());
        Object $flowType = getFlowType();
        int result6 = (result5 * 59) + ($flowType == null ? 43 : $flowType.hashCode());
        Object $triggerEndFlowStyle = getTriggerEndFlowStyle();
        int result7 = (result6 * 59) + ($triggerEndFlowStyle == null ? 43 : $triggerEndFlowStyle.hashCode());
        Object $qualityMakerFlowId = getQualityMakerFlowId();
        int result8 = (result7 * 59) + ($qualityMakerFlowId == null ? 43 : $qualityMakerFlowId.hashCode());
        Object $id = getId();
        int result9 = (result8 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $code = getCode();
        int result10 = (result9 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $name = getName();
        int result11 = (result10 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $workstationGroupName = getWorkstationGroupName();
        int result12 = (result11 * 59) + ($workstationGroupName == null ? 43 : $workstationGroupName.hashCode());
        Object $qualityResultOffline = getQualityResultOffline();
        int result13 = (result12 * 59) + ($qualityResultOffline == null ? 43 : $qualityResultOffline.hashCode());
        Object $qualityMakerFlowName = getQualityMakerFlowName();
        return (result13 * 59) + ($qualityMakerFlowName == null ? 43 : $qualityMakerFlowName.hashCode());
    }
 
    public String toString() {
        return "TraceFlowSettingsVO(code=" + getCode() + ", name=" + getName() + ", flowSeq=" + getFlowSeq() + ", stationType=" + getStationType() + ", workstationGroupId=" + getWorkstationGroupId() + ", workstationGroupName=" + getWorkstationGroupName() + ", preFlowId=" + getPreFlowId() + ", nextFlowId=" + getNextFlowId() + ", flowType=" + getFlowType() + ", triggerEndFlowStyle=" + getTriggerEndFlowStyle() + ", qualityResultOffline=" + getQualityResultOffline() + ", qualityMakerFlowId=" + getQualityMakerFlowId() + ", qualityMakerFlowName=" + getQualityMakerFlowName() + ", id=" + getId() + ")";
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getName() {
        return this.name;
    }
 
    public Integer getFlowSeq() {
        return this.flowSeq;
    }
 
    public Integer getStationType() {
        return this.stationType;
    }
 
    public Long getWorkstationGroupId() {
        return this.workstationGroupId;
    }
 
    public String getWorkstationGroupName() {
        return this.workstationGroupName;
    }
 
    public Long getPreFlowId() {
        return this.preFlowId;
    }
 
    public Long getNextFlowId() {
        return this.nextFlowId;
    }
 
    public Integer getFlowType() {
        return this.flowType;
    }
 
    public Integer getTriggerEndFlowStyle() {
        return this.triggerEndFlowStyle;
    }
 
    public String getQualityResultOffline() {
        return this.qualityResultOffline;
    }
 
    public Long getQualityMakerFlowId() {
        return this.qualityMakerFlowId;
    }
 
    public String getQualityMakerFlowName() {
        return this.qualityMakerFlowName;
    }
 
    public Long getId() {
        return this.id;
    }
}