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/AndonCallRecordResVO.class */ public class AndonCallRecordResVO implements Serializable { private static final long serialVersionUID = -1037657482446800207L; @ApiModelProperty("呼叫类型编号") private String typeCode; @ApiModelProperty("呼叫类型名称") private String typeName; @ApiModelProperty("呼叫原因编号") private String reasonCode; @ApiModelProperty("呼叫原因名称") private String reasonName; @ApiModelProperty("呼叫工位名称") private String workstationName; @ApiModelProperty("呼叫工位编号") private String workstationCode; @ApiModelProperty("呼叫人员编号") private String callEmpCode; @ApiModelProperty("呼叫人员名称") private String callEmpName; @ApiModelProperty("呼叫时间") private Date callTime; @ApiModelProperty("处理人员名称") private String handEmpName; @ApiModelProperty("处理人员编号") private String handEmpCode; @ApiModelProperty("完成人员名称") private String completeEmpName; @ApiModelProperty("完成人员编号") private String completeEmpCode; @ApiModelProperty("响应时间") private Date responseTime; @ApiModelProperty("结束时间") private Date endTime; @ApiModelProperty("呼叫总时长(秒)") private Integer callTotalTime; @ApiModelProperty("响应总时长(秒)") private Integer responseTotalTime; @ApiModelProperty("处理时长") private Integer handTotalTime; @ApiModelProperty("备注") private String remark; public void setTypeCode(final String typeCode) { this.typeCode = typeCode; } public void setTypeName(final String typeName) { this.typeName = typeName; } public void setReasonCode(final String reasonCode) { this.reasonCode = reasonCode; } public void setReasonName(final String reasonName) { this.reasonName = reasonName; } public void setWorkstationName(final String workstationName) { this.workstationName = workstationName; } public void setWorkstationCode(final String workstationCode) { this.workstationCode = workstationCode; } public void setCallEmpCode(final String callEmpCode) { this.callEmpCode = callEmpCode; } public void setCallEmpName(final String callEmpName) { this.callEmpName = callEmpName; } public void setCallTime(final Date callTime) { this.callTime = callTime; } public void setHandEmpName(final String handEmpName) { this.handEmpName = handEmpName; } public void setHandEmpCode(final String handEmpCode) { this.handEmpCode = handEmpCode; } public void setCompleteEmpName(final String completeEmpName) { this.completeEmpName = completeEmpName; } public void setCompleteEmpCode(final String completeEmpCode) { this.completeEmpCode = completeEmpCode; } public void setResponseTime(final Date responseTime) { this.responseTime = responseTime; } public void setEndTime(final Date endTime) { this.endTime = endTime; } public void setCallTotalTime(final Integer callTotalTime) { this.callTotalTime = callTotalTime; } public void setResponseTotalTime(final Integer responseTotalTime) { this.responseTotalTime = responseTotalTime; } public void setHandTotalTime(final Integer handTotalTime) { this.handTotalTime = handTotalTime; } public void setRemark(final String remark) { this.remark = remark; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AndonCallRecordResVO) { AndonCallRecordResVO other = (AndonCallRecordResVO) o; if (other.canEqual(this)) { Object this$callTotalTime = getCallTotalTime(); Object other$callTotalTime = other.getCallTotalTime(); if (this$callTotalTime == null) { if (other$callTotalTime != null) { return false; } } else if (!this$callTotalTime.equals(other$callTotalTime)) { return false; } Object this$responseTotalTime = getResponseTotalTime(); Object other$responseTotalTime = other.getResponseTotalTime(); if (this$responseTotalTime == null) { if (other$responseTotalTime != null) { return false; } } else if (!this$responseTotalTime.equals(other$responseTotalTime)) { return false; } Object this$handTotalTime = getHandTotalTime(); Object other$handTotalTime = other.getHandTotalTime(); if (this$handTotalTime == null) { if (other$handTotalTime != null) { return false; } } else if (!this$handTotalTime.equals(other$handTotalTime)) { return false; } Object this$typeCode = getTypeCode(); Object other$typeCode = other.getTypeCode(); if (this$typeCode == null) { if (other$typeCode != null) { return false; } } else if (!this$typeCode.equals(other$typeCode)) { return false; } Object this$typeName = getTypeName(); Object other$typeName = other.getTypeName(); if (this$typeName == null) { if (other$typeName != null) { return false; } } else if (!this$typeName.equals(other$typeName)) { return false; } Object this$reasonCode = getReasonCode(); Object other$reasonCode = other.getReasonCode(); if (this$reasonCode == null) { if (other$reasonCode != null) { return false; } } else if (!this$reasonCode.equals(other$reasonCode)) { 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$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$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$callEmpCode = getCallEmpCode(); Object other$callEmpCode = other.getCallEmpCode(); if (this$callEmpCode == null) { if (other$callEmpCode != null) { return false; } } else if (!this$callEmpCode.equals(other$callEmpCode)) { 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$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$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$handEmpCode = getHandEmpCode(); Object other$handEmpCode = other.getHandEmpCode(); if (this$handEmpCode == null) { if (other$handEmpCode != null) { return false; } } else if (!this$handEmpCode.equals(other$handEmpCode)) { return false; } Object this$completeEmpName = getCompleteEmpName(); Object other$completeEmpName = other.getCompleteEmpName(); if (this$completeEmpName == null) { if (other$completeEmpName != null) { return false; } } else if (!this$completeEmpName.equals(other$completeEmpName)) { return false; } Object this$completeEmpCode = getCompleteEmpCode(); Object other$completeEmpCode = other.getCompleteEmpCode(); if (this$completeEmpCode == null) { if (other$completeEmpCode != null) { return false; } } else if (!this$completeEmpCode.equals(other$completeEmpCode)) { 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$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$remark = getRemark(); Object other$remark = other.getRemark(); return this$remark == null ? other$remark == null : this$remark.equals(other$remark); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AndonCallRecordResVO; } public int hashCode() { Object $callTotalTime = getCallTotalTime(); int result = (1 * 59) + ($callTotalTime == null ? 43 : $callTotalTime.hashCode()); Object $responseTotalTime = getResponseTotalTime(); int result2 = (result * 59) + ($responseTotalTime == null ? 43 : $responseTotalTime.hashCode()); Object $handTotalTime = getHandTotalTime(); int result3 = (result2 * 59) + ($handTotalTime == null ? 43 : $handTotalTime.hashCode()); Object $typeCode = getTypeCode(); int result4 = (result3 * 59) + ($typeCode == null ? 43 : $typeCode.hashCode()); Object $typeName = getTypeName(); int result5 = (result4 * 59) + ($typeName == null ? 43 : $typeName.hashCode()); Object $reasonCode = getReasonCode(); int result6 = (result5 * 59) + ($reasonCode == null ? 43 : $reasonCode.hashCode()); Object $reasonName = getReasonName(); int result7 = (result6 * 59) + ($reasonName == null ? 43 : $reasonName.hashCode()); Object $workstationName = getWorkstationName(); int result8 = (result7 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode()); Object $workstationCode = getWorkstationCode(); int result9 = (result8 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode()); Object $callEmpCode = getCallEmpCode(); int result10 = (result9 * 59) + ($callEmpCode == null ? 43 : $callEmpCode.hashCode()); Object $callEmpName = getCallEmpName(); int result11 = (result10 * 59) + ($callEmpName == null ? 43 : $callEmpName.hashCode()); Object $callTime = getCallTime(); int result12 = (result11 * 59) + ($callTime == null ? 43 : $callTime.hashCode()); Object $handEmpName = getHandEmpName(); int result13 = (result12 * 59) + ($handEmpName == null ? 43 : $handEmpName.hashCode()); Object $handEmpCode = getHandEmpCode(); int result14 = (result13 * 59) + ($handEmpCode == null ? 43 : $handEmpCode.hashCode()); Object $completeEmpName = getCompleteEmpName(); int result15 = (result14 * 59) + ($completeEmpName == null ? 43 : $completeEmpName.hashCode()); Object $completeEmpCode = getCompleteEmpCode(); int result16 = (result15 * 59) + ($completeEmpCode == null ? 43 : $completeEmpCode.hashCode()); Object $responseTime = getResponseTime(); int result17 = (result16 * 59) + ($responseTime == null ? 43 : $responseTime.hashCode()); Object $endTime = getEndTime(); int result18 = (result17 * 59) + ($endTime == null ? 43 : $endTime.hashCode()); Object $remark = getRemark(); return (result18 * 59) + ($remark == null ? 43 : $remark.hashCode()); } public String toString() { return "AndonCallRecordResVO(typeCode=" + getTypeCode() + ", typeName=" + getTypeName() + ", reasonCode=" + getReasonCode() + ", reasonName=" + getReasonName() + ", workstationName=" + getWorkstationName() + ", workstationCode=" + getWorkstationCode() + ", callEmpCode=" + getCallEmpCode() + ", callEmpName=" + getCallEmpName() + ", callTime=" + getCallTime() + ", handEmpName=" + getHandEmpName() + ", handEmpCode=" + getHandEmpCode() + ", completeEmpName=" + getCompleteEmpName() + ", completeEmpCode=" + getCompleteEmpCode() + ", responseTime=" + getResponseTime() + ", endTime=" + getEndTime() + ", callTotalTime=" + getCallTotalTime() + ", responseTotalTime=" + getResponseTotalTime() + ", handTotalTime=" + getHandTotalTime() + ", remark=" + getRemark() + ")"; } public String getTypeCode() { return this.typeCode; } public String getTypeName() { return this.typeName; } public String getReasonCode() { return this.reasonCode; } public String getReasonName() { return this.reasonName; } public String getWorkstationName() { return this.workstationName; } public String getWorkstationCode() { return this.workstationCode; } public String getCallEmpCode() { return this.callEmpCode; } public String getCallEmpName() { return this.callEmpName; } public Date getCallTime() { return this.callTime; } public String getHandEmpName() { return this.handEmpName; } public String getHandEmpCode() { return this.handEmpCode; } public String getCompleteEmpName() { return this.completeEmpName; } public String getCompleteEmpCode() { return this.completeEmpCode; } public Date getResponseTime() { return this.responseTime; } public Date getEndTime() { return this.endTime; } public Integer getCallTotalTime() { return this.callTotalTime; } public Integer getResponseTotalTime() { return this.responseTotalTime; } public Integer getHandTotalTime() { return this.handTotalTime; } public String getRemark() { return this.remark; } }