yangys
2024-03-29 7d18c733d4c4109f2bc8e5b176cfde74c490a207
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
package com.qianwen.smartman.modules.report.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/report/vo/WorkstationAlarmByShiftSelectVO.class */
public class WorkstationAlarmByShiftSelectVO implements Serializable {
    private static final long serialVersionUID = 7581228615791208479L;
    @ApiModelProperty("开始时间")
    private String showDate_begin;
    @ApiModelProperty("结束时间")
    private String showDate_end;
    @ApiModelProperty(value = "工位编号/名称", dataType = "java.lang.String")
    private String workstationKeyword;
    @ApiModelProperty("选择班次 多选")
    private List<Integer> shiftIndex;
    @ApiModelProperty("班次名称")
    private String shiftIndexName;
    @ApiModelProperty("报表分页数")
    private Integer pageNo = 1;
    @ApiModelProperty("报表分页大小")
    private Integer pageSize = 10;
    @ApiModelProperty("树选取工位id")
    private List<String> workstationIds;
 
    public void setShowDate_begin(final String showDate_begin) {
        this.showDate_begin = showDate_begin;
    }
 
    public void setShowDate_end(final String showDate_end) {
        this.showDate_end = showDate_end;
    }
 
    public void setWorkstationKeyword(final String workstationKeyword) {
        this.workstationKeyword = workstationKeyword;
    }
 
    public void setShiftIndex(final List<Integer> shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public void setShiftIndexName(final String shiftIndexName) {
        this.shiftIndexName = shiftIndexName;
    }
 
    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 WorkstationAlarmByShiftSelectVO) {
            WorkstationAlarmByShiftSelectVO other = (WorkstationAlarmByShiftSelectVO) o;
            if (other.canEqual(this)) {
                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$showDate_begin = getShowDate_begin();
                Object other$showDate_begin = other.getShowDate_begin();
                if (this$showDate_begin == null) {
                    if (other$showDate_begin != null) {
                        return false;
                    }
                } else if (!this$showDate_begin.equals(other$showDate_begin)) {
                    return false;
                }
                Object this$showDate_end = getShowDate_end();
                Object other$showDate_end = other.getShowDate_end();
                if (this$showDate_end == null) {
                    if (other$showDate_end != null) {
                        return false;
                    }
                } else if (!this$showDate_end.equals(other$showDate_end)) {
                    return false;
                }
                Object this$workstationKeyword = getWorkstationKeyword();
                Object other$workstationKeyword = other.getWorkstationKeyword();
                if (this$workstationKeyword == null) {
                    if (other$workstationKeyword != null) {
                        return false;
                    }
                } else if (!this$workstationKeyword.equals(other$workstationKeyword)) {
                    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$shiftIndexName = getShiftIndexName();
                Object other$shiftIndexName = other.getShiftIndexName();
                if (this$shiftIndexName == null) {
                    if (other$shiftIndexName != null) {
                        return false;
                    }
                } else if (!this$shiftIndexName.equals(other$shiftIndexName)) {
                    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 WorkstationAlarmByShiftSelectVO;
    }
 
    public int hashCode() {
        Object $pageNo = getPageNo();
        int result = (1 * 59) + ($pageNo == null ? 43 : $pageNo.hashCode());
        Object $pageSize = getPageSize();
        int result2 = (result * 59) + ($pageSize == null ? 43 : $pageSize.hashCode());
        Object $showDate_begin = getShowDate_begin();
        int result3 = (result2 * 59) + ($showDate_begin == null ? 43 : $showDate_begin.hashCode());
        Object $showDate_end = getShowDate_end();
        int result4 = (result3 * 59) + ($showDate_end == null ? 43 : $showDate_end.hashCode());
        Object $workstationKeyword = getWorkstationKeyword();
        int result5 = (result4 * 59) + ($workstationKeyword == null ? 43 : $workstationKeyword.hashCode());
        Object $shiftIndex = getShiftIndex();
        int result6 = (result5 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
        Object $shiftIndexName = getShiftIndexName();
        int result7 = (result6 * 59) + ($shiftIndexName == null ? 43 : $shiftIndexName.hashCode());
        Object $workstationIds = getWorkstationIds();
        return (result7 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
    }
 
    public String toString() {
        return "WorkstationAlarmByShiftSelectVO(showDate_begin=" + getShowDate_begin() + ", showDate_end=" + getShowDate_end() + ", workstationKeyword=" + getWorkstationKeyword() + ", shiftIndex=" + getShiftIndex() + ", shiftIndexName=" + getShiftIndexName() + ", pageNo=" + getPageNo() + ", pageSize=" + getPageSize() + ", workstationIds=" + getWorkstationIds() + ")";
    }
 
    public String getShowDate_begin() {
        return this.showDate_begin;
    }
 
    public String getShowDate_end() {
        return this.showDate_end;
    }
 
    public String getWorkstationKeyword() {
        return this.workstationKeyword;
    }
 
    public List<Integer> getShiftIndex() {
        return this.shiftIndex;
    }
 
    public String getShiftIndexName() {
        return this.shiftIndexName;
    }
 
    public Integer getPageNo() {
        return this.pageNo;
    }
 
    public Integer getPageSize() {
        return this.pageSize;
    }
 
    public List<String> getWorkstationIds() {
        return this.workstationIds;
    }
}