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
package com.qianwen.smartman.modules.coproduction.dto;
 
import io.swagger.annotations.ApiModelProperty;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/PlanProcessDTO.class */
public class PlanProcessDTO {
    @ApiModelProperty("计划工序id")
    private Long planProcessId;
    @ApiModelProperty("工序编号")
    private String processCode;
    @ApiModelProperty("工位id列表,隔开")
    private String workstationIds;
    @ApiModelProperty("工位名称列表,隔开")
    private String workstationNames;
 
    public void setPlanProcessId(final Long planProcessId) {
        this.planProcessId = planProcessId;
    }
 
    public void setProcessCode(final String processCode) {
        this.processCode = processCode;
    }
 
    public void setWorkstationIds(final String workstationIds) {
        this.workstationIds = workstationIds;
    }
 
    public void setWorkstationNames(final String workstationNames) {
        this.workstationNames = workstationNames;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PlanProcessDTO) {
            PlanProcessDTO other = (PlanProcessDTO) o;
            if (other.canEqual(this)) {
                Object this$planProcessId = getPlanProcessId();
                Object other$planProcessId = other.getPlanProcessId();
                if (this$planProcessId == null) {
                    if (other$planProcessId != null) {
                        return false;
                    }
                } else if (!this$planProcessId.equals(other$planProcessId)) {
                    return false;
                }
                Object this$processCode = getProcessCode();
                Object other$processCode = other.getProcessCode();
                if (this$processCode == null) {
                    if (other$processCode != null) {
                        return false;
                    }
                } else if (!this$processCode.equals(other$processCode)) {
                    return false;
                }
                Object this$workstationIds = getWorkstationIds();
                Object other$workstationIds = other.getWorkstationIds();
                if (this$workstationIds == null) {
                    if (other$workstationIds != null) {
                        return false;
                    }
                } else if (!this$workstationIds.equals(other$workstationIds)) {
                    return false;
                }
                Object this$workstationNames = getWorkstationNames();
                Object other$workstationNames = other.getWorkstationNames();
                return this$workstationNames == null ? other$workstationNames == null : this$workstationNames.equals(other$workstationNames);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PlanProcessDTO;
    }
 
    public int hashCode() {
        Object $planProcessId = getPlanProcessId();
        int result = (1 * 59) + ($planProcessId == null ? 43 : $planProcessId.hashCode());
        Object $processCode = getProcessCode();
        int result2 = (result * 59) + ($processCode == null ? 43 : $processCode.hashCode());
        Object $workstationIds = getWorkstationIds();
        int result3 = (result2 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
        Object $workstationNames = getWorkstationNames();
        return (result3 * 59) + ($workstationNames == null ? 43 : $workstationNames.hashCode());
    }
 
    public String toString() {
        return "PlanProcessDTO(planProcessId=" + getPlanProcessId() + ", processCode=" + getProcessCode() + ", workstationIds=" + getWorkstationIds() + ", workstationNames=" + getWorkstationNames() + ")";
    }
 
    public Long getPlanProcessId() {
        return this.planProcessId;
    }
 
    public String getProcessCode() {
        return this.processCode;
    }
 
    public String getWorkstationIds() {
        return this.workstationIds;
    }
 
    public String getWorkstationNames() {
        return this.workstationNames;
    }
}