yangys
2024-04-02 6bed83e92f67954cd2135071133329f2205efe4f
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
package com.qianwen.smartman.modules.trace.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
@ApiModel(value = "TraceFlowSettingsVo对象", description = "流程维护")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/trace/vo/TraceFlowSettingsWorkstationVO.class */
public class TraceFlowSettingsWorkstationVO implements Serializable {
    @ApiModelProperty("流程编号")
    private TraceFlowSettingsVO traceFlowSettingsVO;
    @ApiModelProperty("追溯关联工位")
    List<TraceRelatedWorkstationVO> traceRelatedWorkstationVOList;
 
    public void setTraceFlowSettingsVO(final TraceFlowSettingsVO traceFlowSettingsVO) {
        this.traceFlowSettingsVO = traceFlowSettingsVO;
    }
 
    public void setTraceRelatedWorkstationVOList(final List<TraceRelatedWorkstationVO> traceRelatedWorkstationVOList) {
        this.traceRelatedWorkstationVOList = traceRelatedWorkstationVOList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TraceFlowSettingsWorkstationVO) {
            TraceFlowSettingsWorkstationVO other = (TraceFlowSettingsWorkstationVO) o;
            if (other.canEqual(this)) {
                Object this$traceFlowSettingsVO = getTraceFlowSettingsVO();
                Object other$traceFlowSettingsVO = other.getTraceFlowSettingsVO();
                if (this$traceFlowSettingsVO == null) {
                    if (other$traceFlowSettingsVO != null) {
                        return false;
                    }
                } else if (!this$traceFlowSettingsVO.equals(other$traceFlowSettingsVO)) {
                    return false;
                }
                Object this$traceRelatedWorkstationVOList = getTraceRelatedWorkstationVOList();
                Object other$traceRelatedWorkstationVOList = other.getTraceRelatedWorkstationVOList();
                return this$traceRelatedWorkstationVOList == null ? other$traceRelatedWorkstationVOList == null : this$traceRelatedWorkstationVOList.equals(other$traceRelatedWorkstationVOList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TraceFlowSettingsWorkstationVO;
    }
 
    public int hashCode() {
        Object $traceFlowSettingsVO = getTraceFlowSettingsVO();
        int result = (1 * 59) + ($traceFlowSettingsVO == null ? 43 : $traceFlowSettingsVO.hashCode());
        Object $traceRelatedWorkstationVOList = getTraceRelatedWorkstationVOList();
        return (result * 59) + ($traceRelatedWorkstationVOList == null ? 43 : $traceRelatedWorkstationVOList.hashCode());
    }
 
    public String toString() {
        return "TraceFlowSettingsWorkstationVO(traceFlowSettingsVO=" + getTraceFlowSettingsVO() + ", traceRelatedWorkstationVOList=" + getTraceRelatedWorkstationVOList() + ")";
    }
 
    public TraceFlowSettingsVO getTraceFlowSettingsVO() {
        return this.traceFlowSettingsVO;
    }
 
    public List<TraceRelatedWorkstationVO> getTraceRelatedWorkstationVOList() {
        return this.traceRelatedWorkstationVOList;
    }
}