yangys
2024-05-07 9b677ea5c6978788d135fc15da3d78c5a93789c2
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
package com.qianwen.smartman.modules.dnc.dto;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
public class TransferDirectoryGroupDto implements Serializable {
    @ApiModelProperty("工位组id")
    private Long workStationGroupId;
    @ApiModelProperty("父工位组id")
    private Long workStationGroupParentId;
    @ApiModelProperty("工位组名称")
    private String workStationGroupName;
 
    public void setWorkStationGroupId(final Long workStationGroupId) {
        this.workStationGroupId = workStationGroupId;
    }
 
    public void setWorkStationGroupParentId(final Long workStationGroupParentId) {
        this.workStationGroupParentId = workStationGroupParentId;
    }
 
    public void setWorkStationGroupName(final String workStationGroupName) {
        this.workStationGroupName = workStationGroupName;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TransferDirectoryGroupDto) {
            TransferDirectoryGroupDto other = (TransferDirectoryGroupDto) o;
            if (other.canEqual(this)) {
                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$workStationGroupParentId = getWorkStationGroupParentId();
                Object other$workStationGroupParentId = other.getWorkStationGroupParentId();
                if (this$workStationGroupParentId == null) {
                    if (other$workStationGroupParentId != null) {
                        return false;
                    }
                } else if (!this$workStationGroupParentId.equals(other$workStationGroupParentId)) {
                    return false;
                }
                Object this$workStationGroupName = getWorkStationGroupName();
                Object other$workStationGroupName = other.getWorkStationGroupName();
                return this$workStationGroupName == null ? other$workStationGroupName == null : this$workStationGroupName.equals(other$workStationGroupName);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TransferDirectoryGroupDto;
    }
 
    public int hashCode() {
        Object $workStationGroupId = getWorkStationGroupId();
        int result = (1 * 59) + ($workStationGroupId == null ? 43 : $workStationGroupId.hashCode());
        Object $workStationGroupParentId = getWorkStationGroupParentId();
        int result2 = (result * 59) + ($workStationGroupParentId == null ? 43 : $workStationGroupParentId.hashCode());
        Object $workStationGroupName = getWorkStationGroupName();
        return (result2 * 59) + ($workStationGroupName == null ? 43 : $workStationGroupName.hashCode());
    }
 
    public String toString() {
        return "TransferDirectoryGroupDto(workStationGroupId=" + getWorkStationGroupId() + ", workStationGroupParentId=" + getWorkStationGroupParentId() + ", workStationGroupName=" + getWorkStationGroupName() + ")";
    }
 
    public TransferDirectoryGroupDto(final Long workStationGroupId, final Long workStationGroupParentId, final String workStationGroupName) {
        this.workStationGroupId = workStationGroupId;
        this.workStationGroupParentId = workStationGroupParentId;
        this.workStationGroupName = workStationGroupName;
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/dto/TransferDirectoryGroupDto$TransferDirectoryGroupDtoBuilder.class */
    public static class TransferDirectoryGroupDtoBuilder {
        private Long workStationGroupId;
        private Long workStationGroupParentId;
        private String workStationGroupName;
 
        TransferDirectoryGroupDtoBuilder() {
        }
 
        public TransferDirectoryGroupDtoBuilder workStationGroupId(final Long workStationGroupId) {
            this.workStationGroupId = workStationGroupId;
            return this;
        }
 
        public TransferDirectoryGroupDtoBuilder workStationGroupParentId(final Long workStationGroupParentId) {
            this.workStationGroupParentId = workStationGroupParentId;
            return this;
        }
 
        public TransferDirectoryGroupDtoBuilder workStationGroupName(final String workStationGroupName) {
            this.workStationGroupName = workStationGroupName;
            return this;
        }
 
        public TransferDirectoryGroupDto build() {
            return new TransferDirectoryGroupDto(this.workStationGroupId, this.workStationGroupParentId, this.workStationGroupName);
        }
 
        public String toString() {
            return "TransferDirectoryGroupDto.TransferDirectoryGroupDtoBuilder(workStationGroupId=" + this.workStationGroupId + ", workStationGroupParentId=" + this.workStationGroupParentId + ", workStationGroupName=" + this.workStationGroupName + ")";
        }
    }
 
    public TransferDirectoryGroupDto() {
    }
 
    public static TransferDirectoryGroupDtoBuilder builder() {
        return new TransferDirectoryGroupDtoBuilder();
    }
 
    public Long getWorkStationGroupId() {
        return this.workStationGroupId;
    }
 
    public Long getWorkStationGroupParentId() {
        return this.workStationGroupParentId;
    }
 
    public String getWorkStationGroupName() {
        return this.workStationGroupName;
    }
}