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
package com.qianwen.smartman.modules.fms.dto;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/dto/ManualTrayDmpDTO.class */
public class ManualTrayDmpDTO implements Serializable {
    private static final long serialVersionUID = -8724184933980304902L;
    @ApiModelProperty("托盘编号")
    private String TrayCode;
    @ApiModelProperty("初始位置编号")
    private String StartPosition;
    @ApiModelProperty("起始工作台编号")
    private String StartStation;
    @ApiModelProperty("目标位置编号")
    private String EndPosition;
    @ApiModelProperty("目标工作台号")
    private String EndStation;
    @ApiModelProperty("动作类型(1:实际移动,2:数据移动)")
    private Integer ActionType;
    @ApiModelProperty("目标位置类型(1:库位,2:设备)")
    private Integer CurrentType;
 
    public void setTrayCode(final String TrayCode) {
        this.TrayCode = TrayCode;
    }
 
    public void setStartPosition(final String StartPosition) {
        this.StartPosition = StartPosition;
    }
 
    public void setStartStation(final String StartStation) {
        this.StartStation = StartStation;
    }
 
    public void setEndPosition(final String EndPosition) {
        this.EndPosition = EndPosition;
    }
 
    public void setEndStation(final String EndStation) {
        this.EndStation = EndStation;
    }
 
    public void setActionType(final Integer ActionType) {
        this.ActionType = ActionType;
    }
 
    public void setCurrentType(final Integer CurrentType) {
        this.CurrentType = CurrentType;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ManualTrayDmpDTO) {
            ManualTrayDmpDTO other = (ManualTrayDmpDTO) o;
            if (other.canEqual(this)) {
                Object this$ActionType = getActionType();
                Object other$ActionType = other.getActionType();
                if (this$ActionType == null) {
                    if (other$ActionType != null) {
                        return false;
                    }
                } else if (!this$ActionType.equals(other$ActionType)) {
                    return false;
                }
                Object this$CurrentType = getCurrentType();
                Object other$CurrentType = other.getCurrentType();
                if (this$CurrentType == null) {
                    if (other$CurrentType != null) {
                        return false;
                    }
                } else if (!this$CurrentType.equals(other$CurrentType)) {
                    return false;
                }
                Object this$TrayCode = getTrayCode();
                Object other$TrayCode = other.getTrayCode();
                if (this$TrayCode == null) {
                    if (other$TrayCode != null) {
                        return false;
                    }
                } else if (!this$TrayCode.equals(other$TrayCode)) {
                    return false;
                }
                Object this$StartPosition = getStartPosition();
                Object other$StartPosition = other.getStartPosition();
                if (this$StartPosition == null) {
                    if (other$StartPosition != null) {
                        return false;
                    }
                } else if (!this$StartPosition.equals(other$StartPosition)) {
                    return false;
                }
                Object this$StartStation = getStartStation();
                Object other$StartStation = other.getStartStation();
                if (this$StartStation == null) {
                    if (other$StartStation != null) {
                        return false;
                    }
                } else if (!this$StartStation.equals(other$StartStation)) {
                    return false;
                }
                Object this$EndPosition = getEndPosition();
                Object other$EndPosition = other.getEndPosition();
                if (this$EndPosition == null) {
                    if (other$EndPosition != null) {
                        return false;
                    }
                } else if (!this$EndPosition.equals(other$EndPosition)) {
                    return false;
                }
                Object this$EndStation = getEndStation();
                Object other$EndStation = other.getEndStation();
                return this$EndStation == null ? other$EndStation == null : this$EndStation.equals(other$EndStation);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ManualTrayDmpDTO;
    }
 
    public int hashCode() {
        Object $ActionType = getActionType();
        int result = (1 * 59) + ($ActionType == null ? 43 : $ActionType.hashCode());
        Object $CurrentType = getCurrentType();
        int result2 = (result * 59) + ($CurrentType == null ? 43 : $CurrentType.hashCode());
        Object $TrayCode = getTrayCode();
        int result3 = (result2 * 59) + ($TrayCode == null ? 43 : $TrayCode.hashCode());
        Object $StartPosition = getStartPosition();
        int result4 = (result3 * 59) + ($StartPosition == null ? 43 : $StartPosition.hashCode());
        Object $StartStation = getStartStation();
        int result5 = (result4 * 59) + ($StartStation == null ? 43 : $StartStation.hashCode());
        Object $EndPosition = getEndPosition();
        int result6 = (result5 * 59) + ($EndPosition == null ? 43 : $EndPosition.hashCode());
        Object $EndStation = getEndStation();
        return (result6 * 59) + ($EndStation == null ? 43 : $EndStation.hashCode());
    }
 
    public String toString() {
        return "ManualTrayDmpDTO(TrayCode=" + getTrayCode() + ", StartPosition=" + getStartPosition() + ", StartStation=" + getStartStation() + ", EndPosition=" + getEndPosition() + ", EndStation=" + getEndStation() + ", ActionType=" + getActionType() + ", CurrentType=" + getCurrentType() + ")";
    }
 
    public ManualTrayDmpDTO(final String TrayCode, final String StartPosition, final String StartStation, final String EndPosition, final String EndStation, final Integer ActionType, final Integer CurrentType) {
        this.TrayCode = TrayCode;
        this.StartPosition = StartPosition;
        this.StartStation = StartStation;
        this.EndPosition = EndPosition;
        this.EndStation = EndStation;
        this.ActionType = ActionType;
        this.CurrentType = CurrentType;
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/dto/ManualTrayDmpDTO$ManualTrayDmpDTOBuilder.class */
    public static class ManualTrayDmpDTOBuilder {
        private String TrayCode;
        private String StartPosition;
        private String StartStation;
        private String EndPosition;
        private String EndStation;
        private Integer ActionType;
        private Integer CurrentType;
 
        ManualTrayDmpDTOBuilder() {
        }
 
        public ManualTrayDmpDTOBuilder TrayCode(final String TrayCode) {
            this.TrayCode = TrayCode;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder StartPosition(final String StartPosition) {
            this.StartPosition = StartPosition;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder StartStation(final String StartStation) {
            this.StartStation = StartStation;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder EndPosition(final String EndPosition) {
            this.EndPosition = EndPosition;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder EndStation(final String EndStation) {
            this.EndStation = EndStation;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder ActionType(final Integer ActionType) {
            this.ActionType = ActionType;
            return this;
        }
 
        public ManualTrayDmpDTOBuilder CurrentType(final Integer CurrentType) {
            this.CurrentType = CurrentType;
            return this;
        }
 
        public ManualTrayDmpDTO build() {
            return new ManualTrayDmpDTO(this.TrayCode, this.StartPosition, this.StartStation, this.EndPosition, this.EndStation, this.ActionType, this.CurrentType);
        }
 
        public String toString() {
            return "ManualTrayDmpDTO.ManualTrayDmpDTOBuilder(TrayCode=" + this.TrayCode + ", StartPosition=" + this.StartPosition + ", StartStation=" + this.StartStation + ", EndPosition=" + this.EndPosition + ", EndStation=" + this.EndStation + ", ActionType=" + this.ActionType + ", CurrentType=" + this.CurrentType + ")";
        }
    }
 
    public ManualTrayDmpDTO() {
    }
 
    public static ManualTrayDmpDTOBuilder builder() {
        return new ManualTrayDmpDTOBuilder();
    }
 
    public String getTrayCode() {
        return this.TrayCode;
    }
 
    public String getStartPosition() {
        return this.StartPosition;
    }
 
    public String getStartStation() {
        return this.StartStation;
    }
 
    public String getEndPosition() {
        return this.EndPosition;
    }
 
    public String getEndStation() {
        return this.EndStation;
    }
 
    public Integer getActionType() {
        return this.ActionType;
    }
 
    public Integer getCurrentType() {
        return this.CurrentType;
    }
}