package com.qianwen.smartman.modules.andon.dto; import io.swagger.annotations.ApiModelProperty; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/dto/AndonMessageSendDTO.class */ public class AndonMessageSendDTO { @ApiModelProperty("工位名称") private String workstationName; @ApiModelProperty("呼叫类型") private String typeName; @ApiModelProperty("呼叫原因") private String reasons; @ApiModelProperty("呼叫人员") private String callEmpName; @ApiModelProperty("呼叫时间") private String callTime; @ApiModelProperty("呼叫信息表格") private String andonCallTable; public AndonMessageSendDTO setWorkstationName(final String workstationName) { this.workstationName = workstationName; return this; } public AndonMessageSendDTO setTypeName(final String typeName) { this.typeName = typeName; return this; } public AndonMessageSendDTO setReasons(final String reasons) { this.reasons = reasons; return this; } public AndonMessageSendDTO setCallEmpName(final String callEmpName) { this.callEmpName = callEmpName; return this; } public AndonMessageSendDTO setCallTime(final String callTime) { this.callTime = callTime; return this; } public AndonMessageSendDTO setAndonCallTable(final String andonCallTable) { this.andonCallTable = andonCallTable; return this; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AndonMessageSendDTO) { AndonMessageSendDTO other = (AndonMessageSendDTO) o; if (other.canEqual(this)) { 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$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$reasons = getReasons(); Object other$reasons = other.getReasons(); if (this$reasons == null) { if (other$reasons != null) { return false; } } else if (!this$reasons.equals(other$reasons)) { 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$andonCallTable = getAndonCallTable(); Object other$andonCallTable = other.getAndonCallTable(); return this$andonCallTable == null ? other$andonCallTable == null : this$andonCallTable.equals(other$andonCallTable); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AndonMessageSendDTO; } public int hashCode() { Object $workstationName = getWorkstationName(); int result = (1 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode()); Object $typeName = getTypeName(); int result2 = (result * 59) + ($typeName == null ? 43 : $typeName.hashCode()); Object $reasons = getReasons(); int result3 = (result2 * 59) + ($reasons == null ? 43 : $reasons.hashCode()); Object $callEmpName = getCallEmpName(); int result4 = (result3 * 59) + ($callEmpName == null ? 43 : $callEmpName.hashCode()); Object $callTime = getCallTime(); int result5 = (result4 * 59) + ($callTime == null ? 43 : $callTime.hashCode()); Object $andonCallTable = getAndonCallTable(); return (result5 * 59) + ($andonCallTable == null ? 43 : $andonCallTable.hashCode()); } public String toString() { return "AndonMessageSendDTO(workstationName=" + getWorkstationName() + ", typeName=" + getTypeName() + ", reasons=" + getReasons() + ", callEmpName=" + getCallEmpName() + ", callTime=" + getCallTime() + ", andonCallTable=" + getAndonCallTable() + ")"; } public String getWorkstationName() { return this.workstationName; } public String getTypeName() { return this.typeName; } public String getReasons() { return this.reasons; } public String getCallEmpName() { return this.callEmpName; } public String getCallTime() { return this.callTime; } public String getAndonCallTable() { return this.andonCallTable; } }