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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
package com.qianwen.smartman.modules.coproduction.vo;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanImportVO.class */
public class PlanImportVO {
    private String code;
    private String categoryLabel;
    private String craftId;
    private String craftVersion;
    private String planNum;
    private String planStartTime;
    private String planEndTime;
    private String indentCode;
    private String standardModel;
    private String bomVersion;
    private String productId;
    private String typeId;
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setCategoryLabel(final String categoryLabel) {
        this.categoryLabel = categoryLabel;
    }
 
    public void setCraftId(final String craftId) {
        this.craftId = craftId;
    }
 
    public void setCraftVersion(final String craftVersion) {
        this.craftVersion = craftVersion;
    }
 
    public void setPlanNum(final String planNum) {
        this.planNum = planNum;
    }
 
    public void setPlanStartTime(final String planStartTime) {
        this.planStartTime = planStartTime;
    }
 
    public void setPlanEndTime(final String planEndTime) {
        this.planEndTime = planEndTime;
    }
 
    public void setIndentCode(final String indentCode) {
        this.indentCode = indentCode;
    }
 
    public void setStandardModel(final String standardModel) {
        this.standardModel = standardModel;
    }
 
    public void setBomVersion(final String bomVersion) {
        this.bomVersion = bomVersion;
    }
 
    public void setProductId(final String productId) {
        this.productId = productId;
    }
 
    public void setTypeId(final String typeId) {
        this.typeId = typeId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PlanImportVO) {
            PlanImportVO other = (PlanImportVO) o;
            if (other.canEqual(this)) {
                Object this$code = getCode();
                Object other$code = other.getCode();
                if (this$code == null) {
                    if (other$code != null) {
                        return false;
                    }
                } else if (!this$code.equals(other$code)) {
                    return false;
                }
                Object this$categoryLabel = getCategoryLabel();
                Object other$categoryLabel = other.getCategoryLabel();
                if (this$categoryLabel == null) {
                    if (other$categoryLabel != null) {
                        return false;
                    }
                } else if (!this$categoryLabel.equals(other$categoryLabel)) {
                    return false;
                }
                Object this$craftId = getCraftId();
                Object other$craftId = other.getCraftId();
                if (this$craftId == null) {
                    if (other$craftId != null) {
                        return false;
                    }
                } else if (!this$craftId.equals(other$craftId)) {
                    return false;
                }
                Object this$craftVersion = getCraftVersion();
                Object other$craftVersion = other.getCraftVersion();
                if (this$craftVersion == null) {
                    if (other$craftVersion != null) {
                        return false;
                    }
                } else if (!this$craftVersion.equals(other$craftVersion)) {
                    return false;
                }
                Object this$planNum = getPlanNum();
                Object other$planNum = other.getPlanNum();
                if (this$planNum == null) {
                    if (other$planNum != null) {
                        return false;
                    }
                } else if (!this$planNum.equals(other$planNum)) {
                    return false;
                }
                Object this$planStartTime = getPlanStartTime();
                Object other$planStartTime = other.getPlanStartTime();
                if (this$planStartTime == null) {
                    if (other$planStartTime != null) {
                        return false;
                    }
                } else if (!this$planStartTime.equals(other$planStartTime)) {
                    return false;
                }
                Object this$planEndTime = getPlanEndTime();
                Object other$planEndTime = other.getPlanEndTime();
                if (this$planEndTime == null) {
                    if (other$planEndTime != null) {
                        return false;
                    }
                } else if (!this$planEndTime.equals(other$planEndTime)) {
                    return false;
                }
                Object this$indentCode = getIndentCode();
                Object other$indentCode = other.getIndentCode();
                if (this$indentCode == null) {
                    if (other$indentCode != null) {
                        return false;
                    }
                } else if (!this$indentCode.equals(other$indentCode)) {
                    return false;
                }
                Object this$standardModel = getStandardModel();
                Object other$standardModel = other.getStandardModel();
                if (this$standardModel == null) {
                    if (other$standardModel != null) {
                        return false;
                    }
                } else if (!this$standardModel.equals(other$standardModel)) {
                    return false;
                }
                Object this$bomVersion = getBomVersion();
                Object other$bomVersion = other.getBomVersion();
                if (this$bomVersion == null) {
                    if (other$bomVersion != null) {
                        return false;
                    }
                } else if (!this$bomVersion.equals(other$bomVersion)) {
                    return false;
                }
                Object this$productId = getProductId();
                Object other$productId = other.getProductId();
                if (this$productId == null) {
                    if (other$productId != null) {
                        return false;
                    }
                } else if (!this$productId.equals(other$productId)) {
                    return false;
                }
                Object this$typeId = getTypeId();
                Object other$typeId = other.getTypeId();
                return this$typeId == null ? other$typeId == null : this$typeId.equals(other$typeId);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PlanImportVO;
    }
 
    public int hashCode() {
        Object $code = getCode();
        int result = (1 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $categoryLabel = getCategoryLabel();
        int result2 = (result * 59) + ($categoryLabel == null ? 43 : $categoryLabel.hashCode());
        Object $craftId = getCraftId();
        int result3 = (result2 * 59) + ($craftId == null ? 43 : $craftId.hashCode());
        Object $craftVersion = getCraftVersion();
        int result4 = (result3 * 59) + ($craftVersion == null ? 43 : $craftVersion.hashCode());
        Object $planNum = getPlanNum();
        int result5 = (result4 * 59) + ($planNum == null ? 43 : $planNum.hashCode());
        Object $planStartTime = getPlanStartTime();
        int result6 = (result5 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode());
        Object $planEndTime = getPlanEndTime();
        int result7 = (result6 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode());
        Object $indentCode = getIndentCode();
        int result8 = (result7 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode());
        Object $standardModel = getStandardModel();
        int result9 = (result8 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
        Object $bomVersion = getBomVersion();
        int result10 = (result9 * 59) + ($bomVersion == null ? 43 : $bomVersion.hashCode());
        Object $productId = getProductId();
        int result11 = (result10 * 59) + ($productId == null ? 43 : $productId.hashCode());
        Object $typeId = getTypeId();
        return (result11 * 59) + ($typeId == null ? 43 : $typeId.hashCode());
    }
 
    public String toString() {
        return "PlanImportVO(code=" + getCode() + ", categoryLabel=" + getCategoryLabel() + ", craftId=" + getCraftId() + ", craftVersion=" + getCraftVersion() + ", planNum=" + getPlanNum() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", indentCode=" + getIndentCode() + ", standardModel=" + getStandardModel() + ", bomVersion=" + getBomVersion() + ", productId=" + getProductId() + ", typeId=" + getTypeId() + ")";
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getCategoryLabel() {
        return this.categoryLabel;
    }
 
    public String getCraftId() {
        return this.craftId;
    }
 
    public String getCraftVersion() {
        return this.craftVersion;
    }
 
    public String getPlanNum() {
        return this.planNum;
    }
 
    public String getPlanStartTime() {
        return this.planStartTime;
    }
 
    public String getPlanEndTime() {
        return this.planEndTime;
    }
 
    public String getIndentCode() {
        return this.indentCode;
    }
 
    public String getStandardModel() {
        return this.standardModel;
    }
 
    public String getBomVersion() {
        return this.bomVersion;
    }
 
    public String getProductId() {
        return this.productId;
    }
 
    public String getTypeId() {
        return this.typeId;
    }
}