package com.qianwen.smartman.modules.mdc.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Map; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/AlarmSummaryGraphShiftVO.class */ public class AlarmSummaryGraphShiftVO implements Serializable { private static final long serialVersionUID = -8003785349807567815L; @ApiModelProperty("班次") private Integer shiftIndex; @ApiModelProperty("班次名称") private String shiftIndexName; private Map res; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/AlarmSummaryGraphShiftVO$AlarmSummaryGraphShiftVOBuilder.class */ public static class AlarmSummaryGraphShiftVOBuilder { private Integer shiftIndex; private String shiftIndexName; private Map res; AlarmSummaryGraphShiftVOBuilder() { } public AlarmSummaryGraphShiftVOBuilder shiftIndex(final Integer shiftIndex) { this.shiftIndex = shiftIndex; return this; } public AlarmSummaryGraphShiftVOBuilder shiftIndexName(final String shiftIndexName) { this.shiftIndexName = shiftIndexName; return this; } public AlarmSummaryGraphShiftVOBuilder res(final Map res) { this.res = res; return this; } public AlarmSummaryGraphShiftVO build() { return new AlarmSummaryGraphShiftVO(this.shiftIndex, this.shiftIndexName, this.res); } public String toString() { return "AlarmSummaryGraphShiftVO.AlarmSummaryGraphShiftVOBuilder(shiftIndex=" + this.shiftIndex + ", shiftIndexName=" + this.shiftIndexName + ", res=" + this.res + ")"; } } public void setShiftIndex(final Integer shiftIndex) { this.shiftIndex = shiftIndex; } public void setShiftIndexName(final String shiftIndexName) { this.shiftIndexName = shiftIndexName; } public void setRes(final Map res) { this.res = res; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AlarmSummaryGraphShiftVO) { AlarmSummaryGraphShiftVO other = (AlarmSummaryGraphShiftVO) o; if (other.canEqual(this)) { 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$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$res = getRes(); Object other$res = other.getRes(); return this$res == null ? other$res == null : this$res.equals(other$res); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AlarmSummaryGraphShiftVO; } public int hashCode() { Object $shiftIndex = getShiftIndex(); int result = (1 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode()); Object $shiftIndexName = getShiftIndexName(); int result2 = (result * 59) + ($shiftIndexName == null ? 43 : $shiftIndexName.hashCode()); Object $res = getRes(); return (result2 * 59) + ($res == null ? 43 : $res.hashCode()); } public String toString() { return "AlarmSummaryGraphShiftVO(shiftIndex=" + getShiftIndex() + ", shiftIndexName=" + getShiftIndexName() + ", res=" + getRes() + ")"; } public static AlarmSummaryGraphShiftVOBuilder builder() { return new AlarmSummaryGraphShiftVOBuilder(); } public AlarmSummaryGraphShiftVO() { } public AlarmSummaryGraphShiftVO(final Integer shiftIndex, final String shiftIndexName, final Map res) { this.shiftIndex = shiftIndex; this.shiftIndexName = shiftIndexName; this.res = res; } public Integer getShiftIndex() { return this.shiftIndex; } public String getShiftIndexName() { return this.shiftIndexName; } public Map getRes() { return this.res; } }