package com.qianwen.smartman.modules.tool.excel; import com.alibaba.excel.annotation.ExcelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tool/excel/ToolChangeRecordExcel.class */ public class ToolChangeRecordExcel implements Serializable { @ExcelProperty({"刀具编号"}) private String toolCode; @ExcelProperty({"刀具类型"}) private String toolCategory; @ExcelProperty({"刀具型号"}) private String toolModel; @ExcelProperty({"寿命计数方式"}) private String lifeCountMethod; @ExcelProperty({"初始寿命"}) private String initialLife; @ExcelProperty({"已用寿命"}) private String usedLife; @ExcelProperty({"剩余寿命"}) private String remainLife; @ExcelProperty({"预警值"}) private String warningValue; @ExcelProperty({"工位编号"}) private String workstationCode; @ExcelProperty({"工位名称"}) private String workstationName; @ExcelProperty({"机床刀位"}) private Integer toolPosition; @ExcelProperty({"操作类型"}) private String operationType; @ExcelProperty({"操作人姓名"}) private String employeeName; @ExcelProperty({"操作时间"}) private String createTime; public void setToolCode(final String toolCode) { this.toolCode = toolCode; } public void setToolCategory(final String toolCategory) { this.toolCategory = toolCategory; } public void setToolModel(final String toolModel) { this.toolModel = toolModel; } public void setLifeCountMethod(final String lifeCountMethod) { this.lifeCountMethod = lifeCountMethod; } public void setInitialLife(final String initialLife) { this.initialLife = initialLife; } public void setUsedLife(final String usedLife) { this.usedLife = usedLife; } public void setRemainLife(final String remainLife) { this.remainLife = remainLife; } public void setWarningValue(final String warningValue) { this.warningValue = warningValue; } public void setWorkstationCode(final String workstationCode) { this.workstationCode = workstationCode; } public void setWorkstationName(final String workstationName) { this.workstationName = workstationName; } public void setToolPosition(final Integer toolPosition) { this.toolPosition = toolPosition; } public void setOperationType(final String operationType) { this.operationType = operationType; } public void setEmployeeName(final String employeeName) { this.employeeName = employeeName; } public void setCreateTime(final String createTime) { this.createTime = createTime; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ToolChangeRecordExcel) { ToolChangeRecordExcel other = (ToolChangeRecordExcel) o; if (other.canEqual(this)) { Object this$toolPosition = getToolPosition(); Object other$toolPosition = other.getToolPosition(); if (this$toolPosition == null) { if (other$toolPosition != null) { return false; } } else if (!this$toolPosition.equals(other$toolPosition)) { return false; } Object this$toolCode = getToolCode(); Object other$toolCode = other.getToolCode(); if (this$toolCode == null) { if (other$toolCode != null) { return false; } } else if (!this$toolCode.equals(other$toolCode)) { return false; } Object this$toolCategory = getToolCategory(); Object other$toolCategory = other.getToolCategory(); if (this$toolCategory == null) { if (other$toolCategory != null) { return false; } } else if (!this$toolCategory.equals(other$toolCategory)) { return false; } Object this$toolModel = getToolModel(); Object other$toolModel = other.getToolModel(); if (this$toolModel == null) { if (other$toolModel != null) { return false; } } else if (!this$toolModel.equals(other$toolModel)) { return false; } Object this$lifeCountMethod = getLifeCountMethod(); Object other$lifeCountMethod = other.getLifeCountMethod(); if (this$lifeCountMethod == null) { if (other$lifeCountMethod != null) { return false; } } else if (!this$lifeCountMethod.equals(other$lifeCountMethod)) { return false; } Object this$initialLife = getInitialLife(); Object other$initialLife = other.getInitialLife(); if (this$initialLife == null) { if (other$initialLife != null) { return false; } } else if (!this$initialLife.equals(other$initialLife)) { return false; } Object this$usedLife = getUsedLife(); Object other$usedLife = other.getUsedLife(); if (this$usedLife == null) { if (other$usedLife != null) { return false; } } else if (!this$usedLife.equals(other$usedLife)) { return false; } Object this$remainLife = getRemainLife(); Object other$remainLife = other.getRemainLife(); if (this$remainLife == null) { if (other$remainLife != null) { return false; } } else if (!this$remainLife.equals(other$remainLife)) { return false; } Object this$warningValue = getWarningValue(); Object other$warningValue = other.getWarningValue(); if (this$warningValue == null) { if (other$warningValue != null) { return false; } } else if (!this$warningValue.equals(other$warningValue)) { 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$operationType = getOperationType(); Object other$operationType = other.getOperationType(); if (this$operationType == null) { if (other$operationType != null) { return false; } } else if (!this$operationType.equals(other$operationType)) { return false; } Object this$employeeName = getEmployeeName(); Object other$employeeName = other.getEmployeeName(); if (this$employeeName == null) { if (other$employeeName != null) { return false; } } else if (!this$employeeName.equals(other$employeeName)) { return false; } Object this$createTime = getCreateTime(); Object other$createTime = other.getCreateTime(); return this$createTime == null ? other$createTime == null : this$createTime.equals(other$createTime); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof ToolChangeRecordExcel; } public int hashCode() { Object $toolPosition = getToolPosition(); int result = (1 * 59) + ($toolPosition == null ? 43 : $toolPosition.hashCode()); Object $toolCode = getToolCode(); int result2 = (result * 59) + ($toolCode == null ? 43 : $toolCode.hashCode()); Object $toolCategory = getToolCategory(); int result3 = (result2 * 59) + ($toolCategory == null ? 43 : $toolCategory.hashCode()); Object $toolModel = getToolModel(); int result4 = (result3 * 59) + ($toolModel == null ? 43 : $toolModel.hashCode()); Object $lifeCountMethod = getLifeCountMethod(); int result5 = (result4 * 59) + ($lifeCountMethod == null ? 43 : $lifeCountMethod.hashCode()); Object $initialLife = getInitialLife(); int result6 = (result5 * 59) + ($initialLife == null ? 43 : $initialLife.hashCode()); Object $usedLife = getUsedLife(); int result7 = (result6 * 59) + ($usedLife == null ? 43 : $usedLife.hashCode()); Object $remainLife = getRemainLife(); int result8 = (result7 * 59) + ($remainLife == null ? 43 : $remainLife.hashCode()); Object $warningValue = getWarningValue(); int result9 = (result8 * 59) + ($warningValue == null ? 43 : $warningValue.hashCode()); Object $workstationCode = getWorkstationCode(); int result10 = (result9 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode()); Object $workstationName = getWorkstationName(); int result11 = (result10 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode()); Object $operationType = getOperationType(); int result12 = (result11 * 59) + ($operationType == null ? 43 : $operationType.hashCode()); Object $employeeName = getEmployeeName(); int result13 = (result12 * 59) + ($employeeName == null ? 43 : $employeeName.hashCode()); Object $createTime = getCreateTime(); return (result13 * 59) + ($createTime == null ? 43 : $createTime.hashCode()); } public String toString() { return "ToolChangeRecordExcel(toolCode=" + getToolCode() + ", toolCategory=" + getToolCategory() + ", toolModel=" + getToolModel() + ", lifeCountMethod=" + getLifeCountMethod() + ", initialLife=" + getInitialLife() + ", usedLife=" + getUsedLife() + ", remainLife=" + getRemainLife() + ", warningValue=" + getWarningValue() + ", workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", toolPosition=" + getToolPosition() + ", operationType=" + getOperationType() + ", employeeName=" + getEmployeeName() + ", createTime=" + getCreateTime() + ")"; } public ToolChangeRecordExcel(final String toolCode, final String toolCategory, final String toolModel, final String lifeCountMethod, final String initialLife, final String usedLife, final String remainLife, final String warningValue, final String workstationCode, final String workstationName, final Integer toolPosition, final String operationType, final String employeeName, final String createTime) { this.toolCode = toolCode; this.toolCategory = toolCategory; this.toolModel = toolModel; this.lifeCountMethod = lifeCountMethod; this.initialLife = initialLife; this.usedLife = usedLife; this.remainLife = remainLife; this.warningValue = warningValue; this.workstationCode = workstationCode; this.workstationName = workstationName; this.toolPosition = toolPosition; this.operationType = operationType; this.employeeName = employeeName; this.createTime = createTime; } public ToolChangeRecordExcel() { } public String getToolCode() { return this.toolCode; } public String getToolCategory() { return this.toolCategory; } public String getToolModel() { return this.toolModel; } public String getLifeCountMethod() { return this.lifeCountMethod; } public String getInitialLife() { return this.initialLife; } public String getUsedLife() { return this.usedLife; } public String getRemainLife() { return this.remainLife; } public String getWarningValue() { return this.warningValue; } public String getWorkstationCode() { return this.workstationCode; } public String getWorkstationName() { return this.workstationName; } public Integer getToolPosition() { return this.toolPosition; } public String getOperationType() { return this.operationType; } public String getEmployeeName() { return this.employeeName; } public String getCreateTime() { return this.createTime; } }