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;
|
}
|
}
|