PC
2024-03-31 608f20e0d5d8f95d9bbb917e95e2913682deb77d
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
package com.qianwen.smartman.modules.cps.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
@ApiModel(value = "ProductSelectVO对象", description = "产品信息")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/ProductSelectVO.class */
public class ProductSelectVO implements Serializable {
    private static final long serialVersionUID = 1;
    @ApiModelProperty(value = "所属产品节点id", dataType = "java.lang.String")
    private Long parentId;
    @ApiModelProperty(value = "所属产品类型", dataType = "java.lang.String")
    private String typeId;
    @ApiModelProperty("编号/名称")
    private String keyWord;
    @ApiModelProperty("规格型号")
    private String standardModel;
    @ApiModelProperty("状态")
    private Integer status;
    @ApiModelProperty(value = "类型Id列表", hidden = true)
    private List<Long> typeIds;
    @ApiModelProperty(hidden = true)
    private List<Long> pids;
    @ApiModelProperty(hidden = true)
    private List<Long> ids;
    @ApiModelProperty(hidden = true)
    private String orderBy;
 
    public void setParentId(final Long parentId) {
        this.parentId = parentId;
    }
 
    public void setTypeId(final String typeId) {
        this.typeId = typeId;
    }
 
    public void setKeyWord(final String keyWord) {
        this.keyWord = keyWord;
    }
 
    public void setStandardModel(final String standardModel) {
        this.standardModel = standardModel;
    }
 
    public void setStatus(final Integer status) {
        this.status = status;
    }
 
    public void setTypeIds(final List<Long> typeIds) {
        this.typeIds = typeIds;
    }
 
    public void setPids(final List<Long> pids) {
        this.pids = pids;
    }
 
    public void setIds(final List<Long> ids) {
        this.ids = ids;
    }
 
    public void setOrderBy(final String orderBy) {
        this.orderBy = orderBy;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ProductSelectVO) {
            ProductSelectVO other = (ProductSelectVO) o;
            if (other.canEqual(this)) {
                Object this$parentId = getParentId();
                Object other$parentId = other.getParentId();
                if (this$parentId == null) {
                    if (other$parentId != null) {
                        return false;
                    }
                } else if (!this$parentId.equals(other$parentId)) {
                    return false;
                }
                Object this$status = getStatus();
                Object other$status = other.getStatus();
                if (this$status == null) {
                    if (other$status != null) {
                        return false;
                    }
                } else if (!this$status.equals(other$status)) {
                    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$keyWord = getKeyWord();
                Object other$keyWord = other.getKeyWord();
                if (this$keyWord == null) {
                    if (other$keyWord != null) {
                        return false;
                    }
                } else if (!this$keyWord.equals(other$keyWord)) {
                    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$typeIds = getTypeIds();
                Object other$typeIds = other.getTypeIds();
                if (this$typeIds == null) {
                    if (other$typeIds != null) {
                        return false;
                    }
                } else if (!this$typeIds.equals(other$typeIds)) {
                    return false;
                }
                Object this$pids = getPids();
                Object other$pids = other.getPids();
                if (this$pids == null) {
                    if (other$pids != null) {
                        return false;
                    }
                } else if (!this$pids.equals(other$pids)) {
                    return false;
                }
                Object this$ids = getIds();
                Object other$ids = other.getIds();
                if (this$ids == null) {
                    if (other$ids != null) {
                        return false;
                    }
                } else if (!this$ids.equals(other$ids)) {
                    return false;
                }
                Object this$orderBy = getOrderBy();
                Object other$orderBy = other.getOrderBy();
                return this$orderBy == null ? other$orderBy == null : this$orderBy.equals(other$orderBy);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ProductSelectVO;
    }
 
    public int hashCode() {
        Object $parentId = getParentId();
        int result = (1 * 59) + ($parentId == null ? 43 : $parentId.hashCode());
        Object $status = getStatus();
        int result2 = (result * 59) + ($status == null ? 43 : $status.hashCode());
        Object $typeId = getTypeId();
        int result3 = (result2 * 59) + ($typeId == null ? 43 : $typeId.hashCode());
        Object $keyWord = getKeyWord();
        int result4 = (result3 * 59) + ($keyWord == null ? 43 : $keyWord.hashCode());
        Object $standardModel = getStandardModel();
        int result5 = (result4 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
        Object $typeIds = getTypeIds();
        int result6 = (result5 * 59) + ($typeIds == null ? 43 : $typeIds.hashCode());
        Object $pids = getPids();
        int result7 = (result6 * 59) + ($pids == null ? 43 : $pids.hashCode());
        Object $ids = getIds();
        int result8 = (result7 * 59) + ($ids == null ? 43 : $ids.hashCode());
        Object $orderBy = getOrderBy();
        return (result8 * 59) + ($orderBy == null ? 43 : $orderBy.hashCode());
    }
 
    public String toString() {
        return "ProductSelectVO(parentId=" + getParentId() + ", typeId=" + getTypeId() + ", keyWord=" + getKeyWord() + ", standardModel=" + getStandardModel() + ", status=" + getStatus() + ", typeIds=" + getTypeIds() + ", pids=" + getPids() + ", ids=" + getIds() + ", orderBy=" + getOrderBy() + ")";
    }
 
    public Long getParentId() {
        return this.parentId;
    }
 
    public String getTypeId() {
        return this.typeId;
    }
 
    public String getKeyWord() {
        return this.keyWord;
    }
 
    public String getStandardModel() {
        return this.standardModel;
    }
 
    public Integer getStatus() {
        return this.status;
    }
 
    public List<Long> getTypeIds() {
        return this.typeIds;
    }
 
    public List<Long> getPids() {
        return this.pids;
    }
 
    public List<Long> getIds() {
        return this.ids;
    }
 
    public String getOrderBy() {
        return this.orderBy;
    }
}