yangys
2024-04-01 a36d93e531c292240dc59cb8e712b2eca21a4066
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
package com.qianwen.smartman.modules.report.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/report/vo/WorkstationEfficiencySelectVO.class */
public class WorkstationEfficiencySelectVO {
    private String name;
    private String shiftIndex;
    private List<Integer> productivityTypes;
    private Integer dateCycle;
    private String startTime;
    private String endTime;
    @ApiModelProperty("报表分页数")
    private Integer pageNo;
    @ApiModelProperty("报表分页大小")
    private Integer pageSize;
    @ApiModelProperty("树选取工位id")
    private List<String> workstationIds;
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setShiftIndex(final String shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public void setProductivityTypes(final List<Integer> productivityTypes) {
        this.productivityTypes = productivityTypes;
    }
 
    public void setDateCycle(final Integer dateCycle) {
        this.dateCycle = dateCycle;
    }
 
    public void setStartTime(final String startTime) {
        this.startTime = startTime;
    }
 
    public void setEndTime(final String endTime) {
        this.endTime = endTime;
    }
 
    public void setPageNo(final Integer pageNo) {
        this.pageNo = pageNo;
    }
 
    public void setPageSize(final Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public void setWorkstationIds(final List<String> workstationIds) {
        this.workstationIds = workstationIds;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WorkstationEfficiencySelectVO) {
            WorkstationEfficiencySelectVO other = (WorkstationEfficiencySelectVO) o;
            if (other.canEqual(this)) {
                Object this$dateCycle = getDateCycle();
                Object other$dateCycle = other.getDateCycle();
                if (this$dateCycle == null) {
                    if (other$dateCycle != null) {
                        return false;
                    }
                } else if (!this$dateCycle.equals(other$dateCycle)) {
                    return false;
                }
                Object this$pageNo = getPageNo();
                Object other$pageNo = other.getPageNo();
                if (this$pageNo == null) {
                    if (other$pageNo != null) {
                        return false;
                    }
                } else if (!this$pageNo.equals(other$pageNo)) {
                    return false;
                }
                Object this$pageSize = getPageSize();
                Object other$pageSize = other.getPageSize();
                if (this$pageSize == null) {
                    if (other$pageSize != null) {
                        return false;
                    }
                } else if (!this$pageSize.equals(other$pageSize)) {
                    return false;
                }
                Object this$name = getName();
                Object other$name = other.getName();
                if (this$name == null) {
                    if (other$name != null) {
                        return false;
                    }
                } else if (!this$name.equals(other$name)) {
                    return false;
                }
                Object this$shiftIndex = getShiftIndex();
                Object other$shiftIndex = other.getShiftIndex();
                if (this$shiftIndex == null) {
                    if (other$shiftIndex != null) {
                        return false;
                    }
                } else if (!this$shiftIndex.equals(other$shiftIndex)) {
                    return false;
                }
                Object this$productivityTypes = getProductivityTypes();
                Object other$productivityTypes = other.getProductivityTypes();
                if (this$productivityTypes == null) {
                    if (other$productivityTypes != null) {
                        return false;
                    }
                } else if (!this$productivityTypes.equals(other$productivityTypes)) {
                    return false;
                }
                Object this$startTime = getStartTime();
                Object other$startTime = other.getStartTime();
                if (this$startTime == null) {
                    if (other$startTime != null) {
                        return false;
                    }
                } else if (!this$startTime.equals(other$startTime)) {
                    return false;
                }
                Object this$endTime = getEndTime();
                Object other$endTime = other.getEndTime();
                if (this$endTime == null) {
                    if (other$endTime != null) {
                        return false;
                    }
                } else if (!this$endTime.equals(other$endTime)) {
                    return false;
                }
                Object this$workstationIds = getWorkstationIds();
                Object other$workstationIds = other.getWorkstationIds();
                return this$workstationIds == null ? other$workstationIds == null : this$workstationIds.equals(other$workstationIds);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WorkstationEfficiencySelectVO;
    }
 
    public int hashCode() {
        Object $dateCycle = getDateCycle();
        int result = (1 * 59) + ($dateCycle == null ? 43 : $dateCycle.hashCode());
        Object $pageNo = getPageNo();
        int result2 = (result * 59) + ($pageNo == null ? 43 : $pageNo.hashCode());
        Object $pageSize = getPageSize();
        int result3 = (result2 * 59) + ($pageSize == null ? 43 : $pageSize.hashCode());
        Object $name = getName();
        int result4 = (result3 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $shiftIndex = getShiftIndex();
        int result5 = (result4 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
        Object $productivityTypes = getProductivityTypes();
        int result6 = (result5 * 59) + ($productivityTypes == null ? 43 : $productivityTypes.hashCode());
        Object $startTime = getStartTime();
        int result7 = (result6 * 59) + ($startTime == null ? 43 : $startTime.hashCode());
        Object $endTime = getEndTime();
        int result8 = (result7 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
        Object $workstationIds = getWorkstationIds();
        return (result8 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
    }
 
    public String toString() {
        return "WorkstationEfficiencySelectVO(name=" + getName() + ", shiftIndex=" + getShiftIndex() + ", productivityTypes=" + getProductivityTypes() + ", dateCycle=" + getDateCycle() + ", startTime=" + getStartTime() + ", endTime=" + getEndTime() + ", pageNo=" + getPageNo() + ", pageSize=" + getPageSize() + ", workstationIds=" + getWorkstationIds() + ")";
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getShiftIndex() {
        return this.shiftIndex;
    }
 
    public List<Integer> getProductivityTypes() {
        return this.productivityTypes;
    }
 
    public Integer getDateCycle() {
        return this.dateCycle;
    }
 
    public String getStartTime() {
        return this.startTime;
    }
 
    public String getEndTime() {
        return this.endTime;
    }
 
    public Integer getPageNo() {
        return this.pageNo;
    }
 
    public Integer getPageSize() {
        return this.pageSize;
    }
 
    public List<String> getWorkstationIds() {
        return this.workstationIds;
    }
}