package com.qianwen.smartman.modules.andon.excel; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.write.style.ColumnWidth; import com.alibaba.excel.annotation.write.style.ContentRowHeight; import com.alibaba.excel.annotation.write.style.HeadRowHeight; import java.io.Serializable; import com.qianwen.smartman.common.cache.RegionCache; @HeadRowHeight(20) @ColumnWidth(16) @ContentRowHeight(18) /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/excel/AndonCallRecordExport.class */ public class AndonCallRecordExport implements Serializable { private static final long serialVersionUID = 2557121698254787134L; @ExcelProperty(value = {"呼叫类型编号"}, index = 0) private String typeCode; @ExcelProperty(value = {"呼叫类型名称"}, index = 1) private String typeName; @ExcelProperty(value = {"呼叫原因编号"}, index = 2) private String reasonCode; @ExcelProperty(value = {"呼叫原因名称"}, index = 3) private String reasonName; @ExcelProperty(value = {"呼叫工位名称"}, index = 4) private String workstationName; @ExcelProperty(value = {"呼叫人员名称"}, index = RegionCache.VILLAGE_LEVEL) private String callEmpName; @ExcelProperty(value = {"呼叫时间"}, index = 6) private String callTime; @ExcelProperty(value = {"处理人员"}, index = 7) private String handEmpName; @ExcelProperty(value = {"响应时间"}, index = 8) private String responseTime; @ExcelProperty(value = {"响应时长"}, index = 9) private String responseTotalTime; @ExcelProperty(value = {"结束时间"}, index = 10) private String endTime; @ExcelProperty(value = {"呼叫总时长"}, index = 11) private String callTotalTime; @ExcelProperty(value = {"处理时长"}, index = 12) private String handTotalTime; @ExcelProperty(value = {"完成人员"}, index = 13) private String completeEmpName; @ExcelProperty(value = {"备注"}, index = 14) private String remark; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/excel/AndonCallRecordExport$AndonCallRecordExportBuilder.class */ public static class AndonCallRecordExportBuilder { private String typeCode; private String typeName; private String reasonCode; private String reasonName; private String workstationName; private String callEmpName; private String callTime; private String handEmpName; private String responseTime; private String responseTotalTime; private String endTime; private String callTotalTime; private String handTotalTime; private String completeEmpName; private String remark; AndonCallRecordExportBuilder() { } public AndonCallRecordExportBuilder typeCode(final String typeCode) { this.typeCode = typeCode; return this; } public AndonCallRecordExportBuilder typeName(final String typeName) { this.typeName = typeName; return this; } public AndonCallRecordExportBuilder reasonCode(final String reasonCode) { this.reasonCode = reasonCode; return this; } public AndonCallRecordExportBuilder reasonName(final String reasonName) { this.reasonName = reasonName; return this; } public AndonCallRecordExportBuilder workstationName(final String workstationName) { this.workstationName = workstationName; return this; } public AndonCallRecordExportBuilder callEmpName(final String callEmpName) { this.callEmpName = callEmpName; return this; } public AndonCallRecordExportBuilder callTime(final String callTime) { this.callTime = callTime; return this; } public AndonCallRecordExportBuilder handEmpName(final String handEmpName) { this.handEmpName = handEmpName; return this; } public AndonCallRecordExportBuilder responseTime(final String responseTime) { this.responseTime = responseTime; return this; } public AndonCallRecordExportBuilder responseTotalTime(final String responseTotalTime) { this.responseTotalTime = responseTotalTime; return this; } public AndonCallRecordExportBuilder endTime(final String endTime) { this.endTime = endTime; return this; } public AndonCallRecordExportBuilder callTotalTime(final String callTotalTime) { this.callTotalTime = callTotalTime; return this; } public AndonCallRecordExportBuilder handTotalTime(final String handTotalTime) { this.handTotalTime = handTotalTime; return this; } public AndonCallRecordExportBuilder completeEmpName(final String completeEmpName) { this.completeEmpName = completeEmpName; return this; } public AndonCallRecordExportBuilder remark(final String remark) { this.remark = remark; return this; } public AndonCallRecordExport build() { return new AndonCallRecordExport(this.typeCode, this.typeName, this.reasonCode, this.reasonName, this.workstationName, this.callEmpName, this.callTime, this.handEmpName, this.responseTime, this.responseTotalTime, this.endTime, this.callTotalTime, this.handTotalTime, this.completeEmpName, this.remark); } public String toString() { return "AndonCallRecordExport.AndonCallRecordExportBuilder(typeCode=" + this.typeCode + ", typeName=" + this.typeName + ", reasonCode=" + this.reasonCode + ", reasonName=" + this.reasonName + ", workstationName=" + this.workstationName + ", callEmpName=" + this.callEmpName + ", callTime=" + this.callTime + ", handEmpName=" + this.handEmpName + ", responseTime=" + this.responseTime + ", responseTotalTime=" + this.responseTotalTime + ", endTime=" + this.endTime + ", callTotalTime=" + this.callTotalTime + ", handTotalTime=" + this.handTotalTime + ", completeEmpName=" + this.completeEmpName + ", remark=" + this.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 setCallEmpName(final String callEmpName) { this.callEmpName = callEmpName; } public void setCallTime(final String callTime) { this.callTime = callTime; } public void setHandEmpName(final String handEmpName) { this.handEmpName = handEmpName; } public void setResponseTime(final String responseTime) { this.responseTime = responseTime; } public void setResponseTotalTime(final String responseTotalTime) { this.responseTotalTime = responseTotalTime; } public void setEndTime(final String endTime) { this.endTime = endTime; } public void setCallTotalTime(final String callTotalTime) { this.callTotalTime = callTotalTime; } public void setHandTotalTime(final String handTotalTime) { this.handTotalTime = handTotalTime; } public void setCompleteEmpName(final String completeEmpName) { this.completeEmpName = completeEmpName; } public void setRemark(final String remark) { this.remark = remark; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AndonCallRecordExport) { AndonCallRecordExport other = (AndonCallRecordExport) o; if (other.canEqual(this)) { 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$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$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$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$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$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$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$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$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 AndonCallRecordExport; } public int hashCode() { Object $typeCode = getTypeCode(); int result = (1 * 59) + ($typeCode == null ? 43 : $typeCode.hashCode()); Object $typeName = getTypeName(); int result2 = (result * 59) + ($typeName == null ? 43 : $typeName.hashCode()); Object $reasonCode = getReasonCode(); int result3 = (result2 * 59) + ($reasonCode == null ? 43 : $reasonCode.hashCode()); Object $reasonName = getReasonName(); int result4 = (result3 * 59) + ($reasonName == null ? 43 : $reasonName.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 $callTime = getCallTime(); int result7 = (result6 * 59) + ($callTime == null ? 43 : $callTime.hashCode()); Object $handEmpName = getHandEmpName(); int result8 = (result7 * 59) + ($handEmpName == null ? 43 : $handEmpName.hashCode()); Object $responseTime = getResponseTime(); int result9 = (result8 * 59) + ($responseTime == null ? 43 : $responseTime.hashCode()); Object $responseTotalTime = getResponseTotalTime(); int result10 = (result9 * 59) + ($responseTotalTime == null ? 43 : $responseTotalTime.hashCode()); Object $endTime = getEndTime(); int result11 = (result10 * 59) + ($endTime == null ? 43 : $endTime.hashCode()); Object $callTotalTime = getCallTotalTime(); int result12 = (result11 * 59) + ($callTotalTime == null ? 43 : $callTotalTime.hashCode()); Object $handTotalTime = getHandTotalTime(); int result13 = (result12 * 59) + ($handTotalTime == null ? 43 : $handTotalTime.hashCode()); Object $completeEmpName = getCompleteEmpName(); int result14 = (result13 * 59) + ($completeEmpName == null ? 43 : $completeEmpName.hashCode()); Object $remark = getRemark(); return (result14 * 59) + ($remark == null ? 43 : $remark.hashCode()); } public String toString() { return "AndonCallRecordExport(typeCode=" + getTypeCode() + ", typeName=" + getTypeName() + ", reasonCode=" + getReasonCode() + ", reasonName=" + getReasonName() + ", workstationName=" + getWorkstationName() + ", callEmpName=" + getCallEmpName() + ", callTime=" + getCallTime() + ", handEmpName=" + getHandEmpName() + ", responseTime=" + getResponseTime() + ", responseTotalTime=" + getResponseTotalTime() + ", endTime=" + getEndTime() + ", callTotalTime=" + getCallTotalTime() + ", handTotalTime=" + getHandTotalTime() + ", completeEmpName=" + getCompleteEmpName() + ", remark=" + getRemark() + ")"; } public static AndonCallRecordExportBuilder builder() { return new AndonCallRecordExportBuilder(); } public AndonCallRecordExport() { } public AndonCallRecordExport(final String typeCode, final String typeName, final String reasonCode, final String reasonName, final String workstationName, final String callEmpName, final String callTime, final String handEmpName, final String responseTime, final String responseTotalTime, final String endTime, final String callTotalTime, final String handTotalTime, final String completeEmpName, final String remark) { this.typeCode = typeCode; this.typeName = typeName; this.reasonCode = reasonCode; this.reasonName = reasonName; this.workstationName = workstationName; this.callEmpName = callEmpName; this.callTime = callTime; this.handEmpName = handEmpName; this.responseTime = responseTime; this.responseTotalTime = responseTotalTime; this.endTime = endTime; this.callTotalTime = callTotalTime; this.handTotalTime = handTotalTime; this.completeEmpName = completeEmpName; this.remark = remark; } 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 getCallEmpName() { return this.callEmpName; } public String getCallTime() { return this.callTime; } public String getHandEmpName() { return this.handEmpName; } public String getResponseTime() { return this.responseTime; } public String getResponseTotalTime() { return this.responseTotalTime; } public String getEndTime() { return this.endTime; } public String getCallTotalTime() { return this.callTotalTime; } public String getHandTotalTime() { return this.handTotalTime; } public String getCompleteEmpName() { return this.completeEmpName; } public String getRemark() { return this.remark; } }