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
package com.qianwen.smartman.modules.coproduction.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
import com.qianwen.smartman.modules.cps.vo.FixtureVO;
import com.qianwen.smartman.modules.tool.vo.ToolManageVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/OrderProcessRelationVO.class */
public class OrderProcessRelationVO implements Serializable {
    private static final long serialVersionUID = -8575022341062783283L;
    private Long processId;
    @ApiModelProperty("夹具集合")
    private List<FixtureVO> fixtureVOList;
    @ApiModelProperty("刀具集合")
    private List<ToolManageVO> toolManageVOList;
 
    public void setProcessId(final Long processId) {
        this.processId = processId;
    }
 
    public void setFixtureVOList(final List<FixtureVO> fixtureVOList) {
        this.fixtureVOList = fixtureVOList;
    }
 
    public void setToolManageVOList(final List<ToolManageVO> toolManageVOList) {
        this.toolManageVOList = toolManageVOList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof OrderProcessRelationVO) {
            OrderProcessRelationVO other = (OrderProcessRelationVO) o;
            if (other.canEqual(this)) {
                Object this$processId = getProcessId();
                Object other$processId = other.getProcessId();
                if (this$processId == null) {
                    if (other$processId != null) {
                        return false;
                    }
                } else if (!this$processId.equals(other$processId)) {
                    return false;
                }
                Object this$fixtureVOList = getFixtureVOList();
                Object other$fixtureVOList = other.getFixtureVOList();
                if (this$fixtureVOList == null) {
                    if (other$fixtureVOList != null) {
                        return false;
                    }
                } else if (!this$fixtureVOList.equals(other$fixtureVOList)) {
                    return false;
                }
                Object this$toolManageVOList = getToolManageVOList();
                Object other$toolManageVOList = other.getToolManageVOList();
                return this$toolManageVOList == null ? other$toolManageVOList == null : this$toolManageVOList.equals(other$toolManageVOList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof OrderProcessRelationVO;
    }
 
    public int hashCode() {
        Object $processId = getProcessId();
        int result = (1 * 59) + ($processId == null ? 43 : $processId.hashCode());
        Object $fixtureVOList = getFixtureVOList();
        int result2 = (result * 59) + ($fixtureVOList == null ? 43 : $fixtureVOList.hashCode());
        Object $toolManageVOList = getToolManageVOList();
        return (result2 * 59) + ($toolManageVOList == null ? 43 : $toolManageVOList.hashCode());
    }
 
    public String toString() {
        return "OrderProcessRelationVO(processId=" + getProcessId() + ", fixtureVOList=" + getFixtureVOList() + ", toolManageVOList=" + getToolManageVOList() + ")";
    }
 
    public Long getProcessId() {
        return this.processId;
    }
 
    public List<FixtureVO> getFixtureVOList() {
        return this.fixtureVOList;
    }
 
    public List<ToolManageVO> getToolManageVOList() {
        return this.toolManageVOList;
    }
}