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
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/CollectParamResVO.class */
public class CollectParamResVO<T> implements Serializable {
    private static final long serialVersionUID = 2331362643056207126L;
    @ApiModelProperty("采集项名称")
    private String collectItem;
    @ApiModelProperty("采集项真实名称")
    private String collectRealItem;
    @ApiModelProperty("数据")
    private List<T> data;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/CollectParamResVO$CollectParamResVOBuilder.class */
    public static class CollectParamResVOBuilder<T> {
        private String collectItem;
        private String collectRealItem;
        private List<T> data;
 
        CollectParamResVOBuilder() {
        }
 
        public CollectParamResVOBuilder<T> collectItem(final String collectItem) {
            this.collectItem = collectItem;
            return this;
        }
 
        public CollectParamResVOBuilder<T> collectRealItem(final String collectRealItem) {
            this.collectRealItem = collectRealItem;
            return this;
        }
 
        public CollectParamResVOBuilder<T> data(final List<T> data) {
            this.data = data;
            return this;
        }
 
        public CollectParamResVO<T> build() {
            return new CollectParamResVO<>(this.collectItem, this.collectRealItem, this.data);
        }
 
        public String toString() {
            return "CollectParamResVO.CollectParamResVOBuilder(collectItem=" + this.collectItem + ", collectRealItem=" + this.collectRealItem + ", data=" + this.data + ")";
        }
    }
 
    public void setCollectItem(final String collectItem) {
        this.collectItem = collectItem;
    }
 
    public void setCollectRealItem(final String collectRealItem) {
        this.collectRealItem = collectRealItem;
    }
 
    public void setData(final List<T> data) {
        this.data = data;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CollectParamResVO) {
            CollectParamResVO<?> other = (CollectParamResVO) o;
            if (other.canEqual(this)) {
                Object this$collectItem = getCollectItem();
                Object other$collectItem = other.getCollectItem();
                if (this$collectItem == null) {
                    if (other$collectItem != null) {
                        return false;
                    }
                } else if (!this$collectItem.equals(other$collectItem)) {
                    return false;
                }
                Object this$collectRealItem = getCollectRealItem();
                Object other$collectRealItem = other.getCollectRealItem();
                if (this$collectRealItem == null) {
                    if (other$collectRealItem != null) {
                        return false;
                    }
                } else if (!this$collectRealItem.equals(other$collectRealItem)) {
                    return false;
                }
                Object this$data = getData();
                Object other$data = other.getData();
                return this$data == null ? other$data == null : this$data.equals(other$data);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CollectParamResVO;
    }
 
    public int hashCode() {
        Object $collectItem = getCollectItem();
        int result = (1 * 59) + ($collectItem == null ? 43 : $collectItem.hashCode());
        Object $collectRealItem = getCollectRealItem();
        int result2 = (result * 59) + ($collectRealItem == null ? 43 : $collectRealItem.hashCode());
        Object $data = getData();
        return (result2 * 59) + ($data == null ? 43 : $data.hashCode());
    }
 
    public String toString() {
        return "CollectParamResVO(collectItem=" + getCollectItem() + ", collectRealItem=" + getCollectRealItem() + ", data=" + getData() + ")";
    }
 
    public static <T> CollectParamResVOBuilder<T> builder() {
        return new CollectParamResVOBuilder<>();
    }
 
    public CollectParamResVO() {
    }
 
    public CollectParamResVO(final String collectItem, final String collectRealItem, final List<T> data) {
        this.collectItem = collectItem;
        this.collectRealItem = collectRealItem;
        this.data = data;
    }
 
    public String getCollectItem() {
        return this.collectItem;
    }
 
    public String getCollectRealItem() {
        return this.collectRealItem;
    }
 
    public List<T> getData() {
        return this.data;
    }
}