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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package com.qianwen.smartman.modules.coproduction.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import java.util.List;
import com.qianwen.smartman.modules.system.vo.CustomFieldValueVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanQueryVO.class */
public class PlanQueryVO {
    @ApiModelProperty("扩展字段过滤条件")
    private List<CustomFieldValueVO> filter;
    @ApiModelProperty("排序字段名称")
    private String sortName;
    @ApiModelProperty("排序方式 asc 升序 desc 降序")
    private String order;
    @ApiModelProperty("计划属性")
    private Integer category;
    @ApiModelProperty("计划编号")
    private String code;
    @ApiModelProperty("订单编号")
    private String indentCode;
    @ApiModelProperty("规格型号")
    private String standardModel;
    @ApiModelProperty("计划状态")
    private List<Integer> planStatus;
    @ApiModelProperty("产品类型")
    private List<Long> productTypeIds;
    @ApiModelProperty("产品名称")
    private String productName;
    @ApiModelProperty("计划开始时间")
    private Date planStartTime;
    @ApiModelProperty("计划结束时间")
    private Date planEndTime;
    @ApiModelProperty("计划类型id")
    private Long typeId;
 
    public void setFilter(final List<CustomFieldValueVO> filter) {
        this.filter = filter;
    }
 
    public void setSortName(final String sortName) {
        this.sortName = sortName;
    }
 
    public void setOrder(final String order) {
        this.order = order;
    }
 
    public void setCategory(final Integer category) {
        this.category = category;
    }
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setIndentCode(final String indentCode) {
        this.indentCode = indentCode;
    }
 
    public void setStandardModel(final String standardModel) {
        this.standardModel = standardModel;
    }
 
    public void setPlanStatus(final List<Integer> planStatus) {
        this.planStatus = planStatus;
    }
 
    public void setProductTypeIds(final List<Long> productTypeIds) {
        this.productTypeIds = productTypeIds;
    }
 
    public void setProductName(final String productName) {
        this.productName = productName;
    }
 
    public void setPlanStartTime(final Date planStartTime) {
        this.planStartTime = planStartTime;
    }
 
    public void setPlanEndTime(final Date planEndTime) {
        this.planEndTime = planEndTime;
    }
 
    public void setTypeId(final Long typeId) {
        this.typeId = typeId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PlanQueryVO) {
            PlanQueryVO other = (PlanQueryVO) o;
            if (other.canEqual(this)) {
                Object this$category = getCategory();
                Object other$category = other.getCategory();
                if (this$category == null) {
                    if (other$category != null) {
                        return false;
                    }
                } else if (!this$category.equals(other$category)) {
                    return false;
                }
                Object this$typeId = getTypeId();
                Object other$typeId = other.getTypeId();
                if (this$typeId == null) {
                    if (other$typeId != null) {
                        return false;
                    }
                } else if (!this$typeId.equals(other$typeId)) {
                    return false;
                }
                Object this$filter = getFilter();
                Object other$filter = other.getFilter();
                if (this$filter == null) {
                    if (other$filter != null) {
                        return false;
                    }
                } else if (!this$filter.equals(other$filter)) {
                    return false;
                }
                Object this$sortName = getSortName();
                Object other$sortName = other.getSortName();
                if (this$sortName == null) {
                    if (other$sortName != null) {
                        return false;
                    }
                } else if (!this$sortName.equals(other$sortName)) {
                    return false;
                }
                Object this$order = getOrder();
                Object other$order = other.getOrder();
                if (this$order == null) {
                    if (other$order != null) {
                        return false;
                    }
                } else if (!this$order.equals(other$order)) {
                    return false;
                }
                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$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$planStatus = getPlanStatus();
                Object other$planStatus = other.getPlanStatus();
                if (this$planStatus == null) {
                    if (other$planStatus != null) {
                        return false;
                    }
                } else if (!this$planStatus.equals(other$planStatus)) {
                    return false;
                }
                Object this$productTypeIds = getProductTypeIds();
                Object other$productTypeIds = other.getProductTypeIds();
                if (this$productTypeIds == null) {
                    if (other$productTypeIds != null) {
                        return false;
                    }
                } else if (!this$productTypeIds.equals(other$productTypeIds)) {
                    return false;
                }
                Object this$productName = getProductName();
                Object other$productName = other.getProductName();
                if (this$productName == null) {
                    if (other$productName != null) {
                        return false;
                    }
                } else if (!this$productName.equals(other$productName)) {
                    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();
                return this$planEndTime == null ? other$planEndTime == null : this$planEndTime.equals(other$planEndTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PlanQueryVO;
    }
 
    public int hashCode() {
        Object $category = getCategory();
        int result = (1 * 59) + ($category == null ? 43 : $category.hashCode());
        Object $typeId = getTypeId();
        int result2 = (result * 59) + ($typeId == null ? 43 : $typeId.hashCode());
        Object $filter = getFilter();
        int result3 = (result2 * 59) + ($filter == null ? 43 : $filter.hashCode());
        Object $sortName = getSortName();
        int result4 = (result3 * 59) + ($sortName == null ? 43 : $sortName.hashCode());
        Object $order = getOrder();
        int result5 = (result4 * 59) + ($order == null ? 43 : $order.hashCode());
        Object $code = getCode();
        int result6 = (result5 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $indentCode = getIndentCode();
        int result7 = (result6 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode());
        Object $standardModel = getStandardModel();
        int result8 = (result7 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
        Object $planStatus = getPlanStatus();
        int result9 = (result8 * 59) + ($planStatus == null ? 43 : $planStatus.hashCode());
        Object $productTypeIds = getProductTypeIds();
        int result10 = (result9 * 59) + ($productTypeIds == null ? 43 : $productTypeIds.hashCode());
        Object $productName = getProductName();
        int result11 = (result10 * 59) + ($productName == null ? 43 : $productName.hashCode());
        Object $planStartTime = getPlanStartTime();
        int result12 = (result11 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode());
        Object $planEndTime = getPlanEndTime();
        return (result12 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode());
    }
 
    public String toString() {
        return "PlanQueryVO(filter=" + getFilter() + ", sortName=" + getSortName() + ", order=" + getOrder() + ", category=" + getCategory() + ", code=" + getCode() + ", indentCode=" + getIndentCode() + ", standardModel=" + getStandardModel() + ", planStatus=" + getPlanStatus() + ", productTypeIds=" + getProductTypeIds() + ", productName=" + getProductName() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", typeId=" + getTypeId() + ")";
    }
 
    public List<CustomFieldValueVO> getFilter() {
        return this.filter;
    }
 
    public String getSortName() {
        return this.sortName;
    }
 
    public String getOrder() {
        return this.order;
    }
 
    public Integer getCategory() {
        return this.category;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getIndentCode() {
        return this.indentCode;
    }
 
    public String getStandardModel() {
        return this.standardModel;
    }
 
    public List<Integer> getPlanStatus() {
        return this.planStatus;
    }
 
    public List<Long> getProductTypeIds() {
        return this.productTypeIds;
    }
 
    public String getProductName() {
        return this.productName;
    }
 
    public Date getPlanStartTime() {
        return this.planStartTime;
    }
 
    public Date getPlanEndTime() {
        return this.planEndTime;
    }
 
    public Long getTypeId() {
        return this.typeId;
    }
}