package com.qianwen.smartman.modules.report.vo; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/report/vo/WorkstationEfficiencyVO.class */ public class WorkstationEfficiencyVO { private Long workstationId; private String workstationCode; private String workstationName; private String workstationNameGroupName; private String shiftIndexName; private Integer shiftIndex; private String shiftName; private String time; private String running; private String alarm; private String oee; private String type; private String value; public void setWorkstationId(final Long workstationId) { this.workstationId = workstationId; } public void setWorkstationCode(final String workstationCode) { this.workstationCode = workstationCode; } public void setWorkstationName(final String workstationName) { this.workstationName = workstationName; } public void setWorkstationNameGroupName(final String workstationNameGroupName) { this.workstationNameGroupName = workstationNameGroupName; } public void setShiftIndexName(final String shiftIndexName) { this.shiftIndexName = shiftIndexName; } public void setShiftIndex(final Integer shiftIndex) { this.shiftIndex = shiftIndex; } public void setShiftName(final String shiftName) { this.shiftName = shiftName; } public void setTime(final String time) { this.time = time; } public void setRunning(final String running) { this.running = running; } public void setAlarm(final String alarm) { this.alarm = alarm; } public void setOee(final String oee) { this.oee = oee; } public void setType(final String type) { this.type = type; } public void setValue(final String value) { this.value = value; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof WorkstationEfficiencyVO) { WorkstationEfficiencyVO other = (WorkstationEfficiencyVO) o; if (other.canEqual(this)) { Object this$workstationId = getWorkstationId(); Object other$workstationId = other.getWorkstationId(); if (this$workstationId == null) { if (other$workstationId != null) { return false; } } else if (!this$workstationId.equals(other$workstationId)) { return false; } Object this$shiftIndex = getShiftIndex(); Object other$shiftIndex = other.getShiftIndex(); if (this$shiftIndex == null) { if (other$shiftIndex != null) { return false; } } else if (!this$shiftIndex.equals(other$shiftIndex)) { 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$workstationNameGroupName = getWorkstationNameGroupName(); Object other$workstationNameGroupName = other.getWorkstationNameGroupName(); if (this$workstationNameGroupName == null) { if (other$workstationNameGroupName != null) { return false; } } else if (!this$workstationNameGroupName.equals(other$workstationNameGroupName)) { return false; } Object this$shiftIndexName = getShiftIndexName(); Object other$shiftIndexName = other.getShiftIndexName(); if (this$shiftIndexName == null) { if (other$shiftIndexName != null) { return false; } } else if (!this$shiftIndexName.equals(other$shiftIndexName)) { 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$time = getTime(); Object other$time = other.getTime(); if (this$time == null) { if (other$time != null) { return false; } } else if (!this$time.equals(other$time)) { return false; } Object this$running = getRunning(); Object other$running = other.getRunning(); if (this$running == null) { if (other$running != null) { return false; } } else if (!this$running.equals(other$running)) { return false; } Object this$alarm = getAlarm(); Object other$alarm = other.getAlarm(); if (this$alarm == null) { if (other$alarm != null) { return false; } } else if (!this$alarm.equals(other$alarm)) { return false; } Object this$oee = getOee(); Object other$oee = other.getOee(); if (this$oee == null) { if (other$oee != null) { return false; } } else if (!this$oee.equals(other$oee)) { return false; } Object this$type = getType(); Object other$type = other.getType(); if (this$type == null) { if (other$type != null) { return false; } } else if (!this$type.equals(other$type)) { return false; } Object this$value = getValue(); Object other$value = other.getValue(); return this$value == null ? other$value == null : this$value.equals(other$value); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof WorkstationEfficiencyVO; } public int hashCode() { Object $workstationId = getWorkstationId(); int result = (1 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode()); Object $shiftIndex = getShiftIndex(); int result2 = (result * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode()); Object $workstationCode = getWorkstationCode(); int result3 = (result2 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode()); Object $workstationName = getWorkstationName(); int result4 = (result3 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode()); Object $workstationNameGroupName = getWorkstationNameGroupName(); int result5 = (result4 * 59) + ($workstationNameGroupName == null ? 43 : $workstationNameGroupName.hashCode()); Object $shiftIndexName = getShiftIndexName(); int result6 = (result5 * 59) + ($shiftIndexName == null ? 43 : $shiftIndexName.hashCode()); Object $shiftName = getShiftName(); int result7 = (result6 * 59) + ($shiftName == null ? 43 : $shiftName.hashCode()); Object $time = getTime(); int result8 = (result7 * 59) + ($time == null ? 43 : $time.hashCode()); Object $running = getRunning(); int result9 = (result8 * 59) + ($running == null ? 43 : $running.hashCode()); Object $alarm = getAlarm(); int result10 = (result9 * 59) + ($alarm == null ? 43 : $alarm.hashCode()); Object $oee = getOee(); int result11 = (result10 * 59) + ($oee == null ? 43 : $oee.hashCode()); Object $type = getType(); int result12 = (result11 * 59) + ($type == null ? 43 : $type.hashCode()); Object $value = getValue(); return (result12 * 59) + ($value == null ? 43 : $value.hashCode()); } public String toString() { return "WorkstationEfficiencyVO(workstationId=" + getWorkstationId() + ", workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", workstationNameGroupName=" + getWorkstationNameGroupName() + ", shiftIndexName=" + getShiftIndexName() + ", shiftIndex=" + getShiftIndex() + ", shiftName=" + getShiftName() + ", time=" + getTime() + ", running=" + getRunning() + ", alarm=" + getAlarm() + ", oee=" + getOee() + ", type=" + getType() + ", value=" + getValue() + ")"; } public Long getWorkstationId() { return this.workstationId; } public String getWorkstationCode() { return this.workstationCode; } public String getWorkstationName() { return this.workstationName; } public String getWorkstationNameGroupName() { return this.workstationNameGroupName; } public String getShiftIndexName() { return this.shiftIndexName; } public Integer getShiftIndex() { return this.shiftIndex; } public String getShiftName() { return this.shiftName; } public String getTime() { return this.time; } public String getRunning() { return this.running; } public String getAlarm() { return this.alarm; } public String getOee() { return this.oee; } public String getType() { return this.type; } public String getValue() { return this.value; } }