package com.qianwen.smartman.modules.mdc.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; @HeadRowHeight(20) @ColumnWidth(16) @ContentRowHeight(18) /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/excel/AlarmDataSheetExcelForOther.class */ public class AlarmDataSheetExcelForOther implements Serializable { private static final long serialVersionUID = 8916841183037573536L; @ExcelProperty({"日期"}) private String date; @ExcelProperty({"工位组"}) private String workstationGroup; @ExcelProperty({"工位编号"}) private String workstationCode; @ExcelProperty({"工位名称"}) private String workstationName; @ExcelProperty({"报警代码"}) private String alarmCode; @ExcelProperty({"报警信息"}) private String alarmMsg; @ExcelProperty({"报警次数"}) private String count; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/excel/AlarmDataSheetExcelForOther$AlarmDataSheetExcelForOtherBuilder.class */ public static class AlarmDataSheetExcelForOtherBuilder { private String date; private String workstationGroup; private String workstationCode; private String workstationName; private String alarmCode; private String alarmMsg; private String count; AlarmDataSheetExcelForOtherBuilder() { } public AlarmDataSheetExcelForOtherBuilder date(final String date) { this.date = date; return this; } public AlarmDataSheetExcelForOtherBuilder workstationGroup(final String workstationGroup) { this.workstationGroup = workstationGroup; return this; } public AlarmDataSheetExcelForOtherBuilder workstationCode(final String workstationCode) { this.workstationCode = workstationCode; return this; } public AlarmDataSheetExcelForOtherBuilder workstationName(final String workstationName) { this.workstationName = workstationName; return this; } public AlarmDataSheetExcelForOtherBuilder alarmCode(final String alarmCode) { this.alarmCode = alarmCode; return this; } public AlarmDataSheetExcelForOtherBuilder alarmMsg(final String alarmMsg) { this.alarmMsg = alarmMsg; return this; } public AlarmDataSheetExcelForOtherBuilder count(final String count) { this.count = count; return this; } public AlarmDataSheetExcelForOther build() { return new AlarmDataSheetExcelForOther(this.date, this.workstationGroup, this.workstationCode, this.workstationName, this.alarmCode, this.alarmMsg, this.count); } public String toString() { return "AlarmDataSheetExcelForOther.AlarmDataSheetExcelForOtherBuilder(date=" + this.date + ", workstationGroup=" + this.workstationGroup + ", workstationCode=" + this.workstationCode + ", workstationName=" + this.workstationName + ", alarmCode=" + this.alarmCode + ", alarmMsg=" + this.alarmMsg + ", count=" + this.count + ")"; } } public void setDate(final String date) { this.date = date; } public void setWorkstationGroup(final String workstationGroup) { this.workstationGroup = workstationGroup; } public void setWorkstationCode(final String workstationCode) { this.workstationCode = workstationCode; } public void setWorkstationName(final String workstationName) { this.workstationName = workstationName; } public void setAlarmCode(final String alarmCode) { this.alarmCode = alarmCode; } public void setAlarmMsg(final String alarmMsg) { this.alarmMsg = alarmMsg; } public void setCount(final String count) { this.count = count; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof AlarmDataSheetExcelForOther) { AlarmDataSheetExcelForOther other = (AlarmDataSheetExcelForOther) o; if (other.canEqual(this)) { Object this$date = getDate(); Object other$date = other.getDate(); if (this$date == null) { if (other$date != null) { return false; } } else if (!this$date.equals(other$date)) { return false; } Object this$workstationGroup = getWorkstationGroup(); Object other$workstationGroup = other.getWorkstationGroup(); if (this$workstationGroup == null) { if (other$workstationGroup != null) { return false; } } else if (!this$workstationGroup.equals(other$workstationGroup)) { 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$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$count = getCount(); Object other$count = other.getCount(); return this$count == null ? other$count == null : this$count.equals(other$count); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof AlarmDataSheetExcelForOther; } public int hashCode() { Object $date = getDate(); int result = (1 * 59) + ($date == null ? 43 : $date.hashCode()); Object $workstationGroup = getWorkstationGroup(); int result2 = (result * 59) + ($workstationGroup == null ? 43 : $workstationGroup.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 $alarmCode = getAlarmCode(); int result5 = (result4 * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode()); Object $alarmMsg = getAlarmMsg(); int result6 = (result5 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode()); Object $count = getCount(); return (result6 * 59) + ($count == null ? 43 : $count.hashCode()); } public String toString() { return "AlarmDataSheetExcelForOther(date=" + getDate() + ", workstationGroup=" + getWorkstationGroup() + ", workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", alarmCode=" + getAlarmCode() + ", alarmMsg=" + getAlarmMsg() + ", count=" + getCount() + ")"; } public static AlarmDataSheetExcelForOtherBuilder builder() { return new AlarmDataSheetExcelForOtherBuilder(); } public AlarmDataSheetExcelForOther() { } public AlarmDataSheetExcelForOther(final String date, final String workstationGroup, final String workstationCode, final String workstationName, final String alarmCode, final String alarmMsg, final String count) { this.date = date; this.workstationGroup = workstationGroup; this.workstationCode = workstationCode; this.workstationName = workstationName; this.alarmCode = alarmCode; this.alarmMsg = alarmMsg; this.count = count; } public String getDate() { return this.date; } public String getWorkstationGroup() { return this.workstationGroup; } public String getWorkstationCode() { return this.workstationCode; } public String getWorkstationName() { return this.workstationName; } public String getAlarmCode() { return this.alarmCode; } public String getAlarmMsg() { return this.alarmMsg; } public String getCount() { return this.count; } }