package com.qianwen.smartman.modules.mdc.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/AlarmDataSheetVO.class */ public class AlarmDataSheetVO implements Serializable { private static final long serialVersionUID = 2652503648744082444L; @ApiModelProperty("报警代码") private String alarmCode; @ApiModelProperty("报警次数") private Integer count; @ApiModelProperty("报警信息") private String alarmMsg; @ApiModelProperty("报警时间") private String alarmTime; public void setAlarmCode(final String alarmCode) { this.alarmCode = alarmCode; } public void setCount(final Integer count) { this.count = count; } public void setAlarmMsg(final String alarmMsg) { this.alarmMsg = alarmMsg; } public void setAlarmTime(final String alarmTime) { this.alarmTime = alarmTime; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AlarmDataSheetVO) { AlarmDataSheetVO other = (AlarmDataSheetVO) o; if (other.canEqual(this)) { Object this$count = getCount(); Object other$count = other.getCount(); if (this$count == null) { if (other$count != null) { return false; } } else if (!this$count.equals(other$count)) { return false; } Object this$alarmCode = getAlarmCode(); Object other$alarmCode = other.getAlarmCode(); if (this$alarmCode == null) { if (other$alarmCode != null) { return false; } } else if (!this$alarmCode.equals(other$alarmCode)) { return false; } Object this$alarmMsg = getAlarmMsg(); Object other$alarmMsg = other.getAlarmMsg(); if (this$alarmMsg == null) { if (other$alarmMsg != null) { return false; } } else if (!this$alarmMsg.equals(other$alarmMsg)) { return false; } Object this$alarmTime = getAlarmTime(); Object other$alarmTime = other.getAlarmTime(); return this$alarmTime == null ? other$alarmTime == null : this$alarmTime.equals(other$alarmTime); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AlarmDataSheetVO; } public int hashCode() { Object $count = getCount(); int result = (1 * 59) + ($count == null ? 43 : $count.hashCode()); Object $alarmCode = getAlarmCode(); int result2 = (result * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode()); Object $alarmMsg = getAlarmMsg(); int result3 = (result2 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode()); Object $alarmTime = getAlarmTime(); return (result3 * 59) + ($alarmTime == null ? 43 : $alarmTime.hashCode()); } public String toString() { return "AlarmDataSheetVO(alarmCode=" + getAlarmCode() + ", count=" + getCount() + ", alarmMsg=" + getAlarmMsg() + ", alarmTime=" + getAlarmTime() + ")"; } public AlarmDataSheetVO() { } public AlarmDataSheetVO(final String alarmCode, final Integer count, final String alarmMsg, final String alarmTime) { this.alarmCode = alarmCode; this.count = count; this.alarmMsg = alarmMsg; this.alarmTime = alarmTime; } public String getAlarmCode() { return this.alarmCode; } public Integer getCount() { return this.count; } public String getAlarmMsg() { return this.alarmMsg; } public String getAlarmTime() { return this.alarmTime; } }