yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
257
258
259
package com.qianwen.smartman.modules.andon.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/vo/CallTimeTableVO.class */
public class CallTimeTableVO implements Serializable {
    private static final long serialVersionUID = 8280872154373370429L;
    @ApiModelProperty("班次名称")
    private String shiftName;
    @ApiModelProperty("工位/组编号")
    private String workstationCode;
    @ApiModelProperty("工位/组名称")
    private String workstationName;
    @ApiModelProperty("呼叫人员名称")
    private String callEmpName;
    @ApiModelProperty("处理人员")
    private String handEmpName;
    @ApiModelProperty("呼叫原因名称")
    private String reasonName;
    @ApiModelProperty("呼叫时间")
    private Date callTime;
    @ApiModelProperty("响应时间")
    private Date responseTime;
    @ApiModelProperty("完成时间")
    private Date completeTime;
    @ApiModelProperty("响应时长")
    private Integer responseTimeTotal;
    @ApiModelProperty("完成时长")
    private Integer completeTimeTotal;
 
    public void setShiftName(final String shiftName) {
        this.shiftName = shiftName;
    }
 
    public void setWorkstationCode(final String workstationCode) {
        this.workstationCode = workstationCode;
    }
 
    public void setWorkstationName(final String workstationName) {
        this.workstationName = workstationName;
    }
 
    public void setCallEmpName(final String callEmpName) {
        this.callEmpName = callEmpName;
    }
 
    public void setHandEmpName(final String handEmpName) {
        this.handEmpName = handEmpName;
    }
 
    public void setReasonName(final String reasonName) {
        this.reasonName = reasonName;
    }
 
    public void setCallTime(final Date callTime) {
        this.callTime = callTime;
    }
 
    public void setResponseTime(final Date responseTime) {
        this.responseTime = responseTime;
    }
 
    public void setCompleteTime(final Date completeTime) {
        this.completeTime = completeTime;
    }
 
    public void setResponseTimeTotal(final Integer responseTimeTotal) {
        this.responseTimeTotal = responseTimeTotal;
    }
 
    public void setCompleteTimeTotal(final Integer completeTimeTotal) {
        this.completeTimeTotal = completeTimeTotal;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CallTimeTableVO) {
            CallTimeTableVO other = (CallTimeTableVO) o;
            if (other.canEqual(this)) {
                Object this$responseTimeTotal = getResponseTimeTotal();
                Object other$responseTimeTotal = other.getResponseTimeTotal();
                if (this$responseTimeTotal == null) {
                    if (other$responseTimeTotal != null) {
                        return false;
                    }
                } else if (!this$responseTimeTotal.equals(other$responseTimeTotal)) {
                    return false;
                }
                Object this$completeTimeTotal = getCompleteTimeTotal();
                Object other$completeTimeTotal = other.getCompleteTimeTotal();
                if (this$completeTimeTotal == null) {
                    if (other$completeTimeTotal != null) {
                        return false;
                    }
                } else if (!this$completeTimeTotal.equals(other$completeTimeTotal)) {
                    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$workstationCode = getWorkstationCode();
                Object other$workstationCode = other.getWorkstationCode();
                if (this$workstationCode == null) {
                    if (other$workstationCode != null) {
                        return false;
                    }
                } else if (!this$workstationCode.equals(other$workstationCode)) {
                    return false;
                }
                Object this$workstationName = getWorkstationName();
                Object other$workstationName = other.getWorkstationName();
                if (this$workstationName == null) {
                    if (other$workstationName != null) {
                        return false;
                    }
                } else if (!this$workstationName.equals(other$workstationName)) {
                    return false;
                }
                Object this$callEmpName = getCallEmpName();
                Object other$callEmpName = other.getCallEmpName();
                if (this$callEmpName == null) {
                    if (other$callEmpName != null) {
                        return false;
                    }
                } else if (!this$callEmpName.equals(other$callEmpName)) {
                    return false;
                }
                Object this$handEmpName = getHandEmpName();
                Object other$handEmpName = other.getHandEmpName();
                if (this$handEmpName == null) {
                    if (other$handEmpName != null) {
                        return false;
                    }
                } else if (!this$handEmpName.equals(other$handEmpName)) {
                    return false;
                }
                Object this$reasonName = getReasonName();
                Object other$reasonName = other.getReasonName();
                if (this$reasonName == null) {
                    if (other$reasonName != null) {
                        return false;
                    }
                } else if (!this$reasonName.equals(other$reasonName)) {
                    return false;
                }
                Object this$callTime = getCallTime();
                Object other$callTime = other.getCallTime();
                if (this$callTime == null) {
                    if (other$callTime != null) {
                        return false;
                    }
                } else if (!this$callTime.equals(other$callTime)) {
                    return false;
                }
                Object this$responseTime = getResponseTime();
                Object other$responseTime = other.getResponseTime();
                if (this$responseTime == null) {
                    if (other$responseTime != null) {
                        return false;
                    }
                } else if (!this$responseTime.equals(other$responseTime)) {
                    return false;
                }
                Object this$completeTime = getCompleteTime();
                Object other$completeTime = other.getCompleteTime();
                return this$completeTime == null ? other$completeTime == null : this$completeTime.equals(other$completeTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CallTimeTableVO;
    }
 
    public int hashCode() {
        Object $responseTimeTotal = getResponseTimeTotal();
        int result = (1 * 59) + ($responseTimeTotal == null ? 43 : $responseTimeTotal.hashCode());
        Object $completeTimeTotal = getCompleteTimeTotal();
        int result2 = (result * 59) + ($completeTimeTotal == null ? 43 : $completeTimeTotal.hashCode());
        Object $shiftName = getShiftName();
        int result3 = (result2 * 59) + ($shiftName == null ? 43 : $shiftName.hashCode());
        Object $workstationCode = getWorkstationCode();
        int result4 = (result3 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode());
        Object $workstationName = getWorkstationName();
        int result5 = (result4 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
        Object $callEmpName = getCallEmpName();
        int result6 = (result5 * 59) + ($callEmpName == null ? 43 : $callEmpName.hashCode());
        Object $handEmpName = getHandEmpName();
        int result7 = (result6 * 59) + ($handEmpName == null ? 43 : $handEmpName.hashCode());
        Object $reasonName = getReasonName();
        int result8 = (result7 * 59) + ($reasonName == null ? 43 : $reasonName.hashCode());
        Object $callTime = getCallTime();
        int result9 = (result8 * 59) + ($callTime == null ? 43 : $callTime.hashCode());
        Object $responseTime = getResponseTime();
        int result10 = (result9 * 59) + ($responseTime == null ? 43 : $responseTime.hashCode());
        Object $completeTime = getCompleteTime();
        return (result10 * 59) + ($completeTime == null ? 43 : $completeTime.hashCode());
    }
 
    public String toString() {
        return "CallTimeTableVO(shiftName=" + getShiftName() + ", workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", callEmpName=" + getCallEmpName() + ", handEmpName=" + getHandEmpName() + ", reasonName=" + getReasonName() + ", callTime=" + getCallTime() + ", responseTime=" + getResponseTime() + ", completeTime=" + getCompleteTime() + ", responseTimeTotal=" + getResponseTimeTotal() + ", completeTimeTotal=" + getCompleteTimeTotal() + ")";
    }
 
    public String getShiftName() {
        return this.shiftName;
    }
 
    public String getWorkstationCode() {
        return this.workstationCode;
    }
 
    public String getWorkstationName() {
        return this.workstationName;
    }
 
    public String getCallEmpName() {
        return this.callEmpName;
    }
 
    public String getHandEmpName() {
        return this.handEmpName;
    }
 
    public String getReasonName() {
        return this.reasonName;
    }
 
    public Date getCallTime() {
        return this.callTime;
    }
 
    public Date getResponseTime() {
        return this.responseTime;
    }
 
    public Date getCompleteTime() {
        return this.completeTime;
    }
 
    public Integer getResponseTimeTotal() {
        return this.responseTimeTotal;
    }
 
    public Integer getCompleteTimeTotal() {
        return this.completeTimeTotal;
    }
}