yangys
2024-04-02 6bed83e92f67954cd2135071133329f2205efe4f
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
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/StatisticsQueryVO.class */
public class StatisticsQueryVO {
    @ApiModelProperty("工位编号/工位名称")
    private String keyword;
    @ApiModelProperty("统计方式 1 按班次 2 按时间")
    private Integer statisticsType;
    @ApiModelProperty("时间周期 2、日 3、周 4、月")
    private Integer dateCycle;
    @ApiModelProperty("开始时间")
    private String beginTime;
    @ApiModelProperty("结束时间")
    private String endTime;
    @ApiModelProperty("班次 多选")
    private List<Integer> shiftIndex;
    @ApiModelProperty("班次名称 等于")
    private String shiftName;
    @ApiModelProperty("每页条数")
    private Integer pageSize;
    @ApiModelProperty("当前页码")
    private Integer pageNo;
    @ApiModelProperty("树选取工位id")
    private List<String> workstationIds;
 
    public void setKeyword(final String keyword) {
        this.keyword = keyword;
    }
 
    public void setStatisticsType(final Integer statisticsType) {
        this.statisticsType = statisticsType;
    }
 
    public void setDateCycle(final Integer dateCycle) {
        this.dateCycle = dateCycle;
    }
 
    public void setBeginTime(final String beginTime) {
        this.beginTime = beginTime;
    }
 
    public void setEndTime(final String endTime) {
        this.endTime = endTime;
    }
 
    public void setShiftIndex(final List<Integer> shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public void setShiftName(final String shiftName) {
        this.shiftName = shiftName;
    }
 
    public void setPageSize(final Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public void setPageNo(final Integer pageNo) {
        this.pageNo = pageNo;
    }
 
    public void setWorkstationIds(final List<String> workstationIds) {
        this.workstationIds = workstationIds;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof StatisticsQueryVO) {
            StatisticsQueryVO other = (StatisticsQueryVO) o;
            if (other.canEqual(this)) {
                Object this$statisticsType = getStatisticsType();
                Object other$statisticsType = other.getStatisticsType();
                if (this$statisticsType == null) {
                    if (other$statisticsType != null) {
                        return false;
                    }
                } else if (!this$statisticsType.equals(other$statisticsType)) {
                    return false;
                }
                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$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$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$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$beginTime = getBeginTime();
                Object other$beginTime = other.getBeginTime();
                if (this$beginTime == null) {
                    if (other$beginTime != null) {
                        return false;
                    }
                } else if (!this$beginTime.equals(other$beginTime)) {
                    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$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$shiftName = getShiftName();
                Object other$shiftName = other.getShiftName();
                if (this$shiftName == null) {
                    if (other$shiftName != null) {
                        return false;
                    }
                } else if (!this$shiftName.equals(other$shiftName)) {
                    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 StatisticsQueryVO;
    }
 
    public int hashCode() {
        Object $statisticsType = getStatisticsType();
        int result = (1 * 59) + ($statisticsType == null ? 43 : $statisticsType.hashCode());
        Object $dateCycle = getDateCycle();
        int result2 = (result * 59) + ($dateCycle == null ? 43 : $dateCycle.hashCode());
        Object $pageSize = getPageSize();
        int result3 = (result2 * 59) + ($pageSize == null ? 43 : $pageSize.hashCode());
        Object $pageNo = getPageNo();
        int result4 = (result3 * 59) + ($pageNo == null ? 43 : $pageNo.hashCode());
        Object $keyword = getKeyword();
        int result5 = (result4 * 59) + ($keyword == null ? 43 : $keyword.hashCode());
        Object $beginTime = getBeginTime();
        int result6 = (result5 * 59) + ($beginTime == null ? 43 : $beginTime.hashCode());
        Object $endTime = getEndTime();
        int result7 = (result6 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
        Object $shiftIndex = getShiftIndex();
        int result8 = (result7 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
        Object $shiftName = getShiftName();
        int result9 = (result8 * 59) + ($shiftName == null ? 43 : $shiftName.hashCode());
        Object $workstationIds = getWorkstationIds();
        return (result9 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
    }
 
    public String toString() {
        return "StatisticsQueryVO(keyword=" + getKeyword() + ", statisticsType=" + getStatisticsType() + ", dateCycle=" + getDateCycle() + ", beginTime=" + getBeginTime() + ", endTime=" + getEndTime() + ", shiftIndex=" + getShiftIndex() + ", shiftName=" + getShiftName() + ", pageSize=" + getPageSize() + ", pageNo=" + getPageNo() + ", workstationIds=" + getWorkstationIds() + ")";
    }
 
    public StatisticsQueryVO(final String keyword, final Integer statisticsType, final Integer dateCycle, final String beginTime, final String endTime, final List<Integer> shiftIndex, final String shiftName, final Integer pageSize, final Integer pageNo, final List<String> workstationIds) {
        this.pageSize = 10;
        this.pageNo = 1;
        this.keyword = keyword;
        this.statisticsType = statisticsType;
        this.dateCycle = dateCycle;
        this.beginTime = beginTime;
        this.endTime = endTime;
        this.shiftIndex = shiftIndex;
        this.shiftName = shiftName;
        this.pageSize = pageSize;
        this.pageNo = pageNo;
        this.workstationIds = workstationIds;
    }
 
    public StatisticsQueryVO() {
        this.pageSize = 10;
        this.pageNo = 1;
    }
 
    public String getKeyword() {
        return this.keyword;
    }
 
    public Integer getStatisticsType() {
        return this.statisticsType;
    }
 
    public Integer getDateCycle() {
        return this.dateCycle;
    }
 
    public String getBeginTime() {
        return this.beginTime;
    }
 
    public String getEndTime() {
        return this.endTime;
    }
 
    public List<Integer> getShiftIndex() {
        return this.shiftIndex;
    }
 
    public String getShiftName() {
        return this.shiftName;
    }
 
    public Integer getPageSize() {
        return this.pageSize;
    }
 
    public Integer getPageNo() {
        return this.pageNo;
    }
 
    public List<String> getWorkstationIds() {
        return this.workstationIds;
    }
}