package com.qianwen.smartman.modules.cps.excel; import com.alibaba.excel.annotation.ExcelIgnore; 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(20) @ContentRowHeight(18) /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/TrayFixtureImport.class */ public class TrayFixtureImport implements Serializable { private static final long serialVersionUID = -7848165826543471977L; @ExcelProperty({"托盘编号"}) private String trayCode; @ExcelProperty({"托盘名称"}) private String trayName; @ExcelProperty({"托盘面编号"}) private String trayFaceCode; @ExcelProperty({"托盘面名称"}) private String trayFaceName; @ExcelProperty({"夹具编号"}) private String fixtureCode; @ExcelProperty({"夹具名称"}) private String fixtureName; @ExcelIgnore private String failReason; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/TrayFixtureImport$TrayFixtureImportBuilder.class */ public static class TrayFixtureImportBuilder { private String trayCode; private String trayName; private String trayFaceCode; private String trayFaceName; private String fixtureCode; private String fixtureName; private String failReason; TrayFixtureImportBuilder() { } public TrayFixtureImportBuilder trayCode(final String trayCode) { this.trayCode = trayCode; return this; } public TrayFixtureImportBuilder trayName(final String trayName) { this.trayName = trayName; return this; } public TrayFixtureImportBuilder trayFaceCode(final String trayFaceCode) { this.trayFaceCode = trayFaceCode; return this; } public TrayFixtureImportBuilder trayFaceName(final String trayFaceName) { this.trayFaceName = trayFaceName; return this; } public TrayFixtureImportBuilder fixtureCode(final String fixtureCode) { this.fixtureCode = fixtureCode; return this; } public TrayFixtureImportBuilder fixtureName(final String fixtureName) { this.fixtureName = fixtureName; return this; } public TrayFixtureImportBuilder failReason(final String failReason) { this.failReason = failReason; return this; } public TrayFixtureImport build() { return new TrayFixtureImport(this.trayCode, this.trayName, this.trayFaceCode, this.trayFaceName, this.fixtureCode, this.fixtureName, this.failReason); } public String toString() { return "TrayFixtureImport.TrayFixtureImportBuilder(trayCode=" + this.trayCode + ", trayName=" + this.trayName + ", trayFaceCode=" + this.trayFaceCode + ", trayFaceName=" + this.trayFaceName + ", fixtureCode=" + this.fixtureCode + ", fixtureName=" + this.fixtureName + ", failReason=" + this.failReason + ")"; } } public void setTrayCode(final String trayCode) { this.trayCode = trayCode; } public void setTrayName(final String trayName) { this.trayName = trayName; } public void setTrayFaceCode(final String trayFaceCode) { this.trayFaceCode = trayFaceCode; } public void setTrayFaceName(final String trayFaceName) { this.trayFaceName = trayFaceName; } public void setFixtureCode(final String fixtureCode) { this.fixtureCode = fixtureCode; } public void setFixtureName(final String fixtureName) { this.fixtureName = fixtureName; } public void setFailReason(final String failReason) { this.failReason = failReason; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof TrayFixtureImport) { TrayFixtureImport other = (TrayFixtureImport) o; if (other.canEqual(this)) { Object this$trayCode = getTrayCode(); Object other$trayCode = other.getTrayCode(); if (this$trayCode == null) { if (other$trayCode != null) { return false; } } else if (!this$trayCode.equals(other$trayCode)) { return false; } Object this$trayName = getTrayName(); Object other$trayName = other.getTrayName(); if (this$trayName == null) { if (other$trayName != null) { return false; } } else if (!this$trayName.equals(other$trayName)) { return false; } Object this$trayFaceCode = getTrayFaceCode(); Object other$trayFaceCode = other.getTrayFaceCode(); if (this$trayFaceCode == null) { if (other$trayFaceCode != null) { return false; } } else if (!this$trayFaceCode.equals(other$trayFaceCode)) { return false; } Object this$trayFaceName = getTrayFaceName(); Object other$trayFaceName = other.getTrayFaceName(); if (this$trayFaceName == null) { if (other$trayFaceName != null) { return false; } } else if (!this$trayFaceName.equals(other$trayFaceName)) { return false; } Object this$fixtureCode = getFixtureCode(); Object other$fixtureCode = other.getFixtureCode(); if (this$fixtureCode == null) { if (other$fixtureCode != null) { return false; } } else if (!this$fixtureCode.equals(other$fixtureCode)) { return false; } Object this$fixtureName = getFixtureName(); Object other$fixtureName = other.getFixtureName(); if (this$fixtureName == null) { if (other$fixtureName != null) { return false; } } else if (!this$fixtureName.equals(other$fixtureName)) { return false; } Object this$failReason = getFailReason(); Object other$failReason = other.getFailReason(); return this$failReason == null ? other$failReason == null : this$failReason.equals(other$failReason); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof TrayFixtureImport; } public int hashCode() { Object $trayCode = getTrayCode(); int result = (1 * 59) + ($trayCode == null ? 43 : $trayCode.hashCode()); Object $trayName = getTrayName(); int result2 = (result * 59) + ($trayName == null ? 43 : $trayName.hashCode()); Object $trayFaceCode = getTrayFaceCode(); int result3 = (result2 * 59) + ($trayFaceCode == null ? 43 : $trayFaceCode.hashCode()); Object $trayFaceName = getTrayFaceName(); int result4 = (result3 * 59) + ($trayFaceName == null ? 43 : $trayFaceName.hashCode()); Object $fixtureCode = getFixtureCode(); int result5 = (result4 * 59) + ($fixtureCode == null ? 43 : $fixtureCode.hashCode()); Object $fixtureName = getFixtureName(); int result6 = (result5 * 59) + ($fixtureName == null ? 43 : $fixtureName.hashCode()); Object $failReason = getFailReason(); return (result6 * 59) + ($failReason == null ? 43 : $failReason.hashCode()); } public String toString() { return "TrayFixtureImport(trayCode=" + getTrayCode() + ", trayName=" + getTrayName() + ", trayFaceCode=" + getTrayFaceCode() + ", trayFaceName=" + getTrayFaceName() + ", fixtureCode=" + getFixtureCode() + ", fixtureName=" + getFixtureName() + ", failReason=" + getFailReason() + ")"; } public static TrayFixtureImportBuilder builder() { return new TrayFixtureImportBuilder(); } public TrayFixtureImport() { } public TrayFixtureImport(final String trayCode, final String trayName, final String trayFaceCode, final String trayFaceName, final String fixtureCode, final String fixtureName, final String failReason) { this.trayCode = trayCode; this.trayName = trayName; this.trayFaceCode = trayFaceCode; this.trayFaceName = trayFaceName; this.fixtureCode = fixtureCode; this.fixtureName = fixtureName; this.failReason = failReason; } public String getTrayCode() { return this.trayCode; } public String getTrayName() { return this.trayName; } public String getTrayFaceCode() { return this.trayFaceCode; } public String getTrayFaceName() { return this.trayFaceName; } public String getFixtureCode() { return this.fixtureCode; } public String getFixtureName() { return this.fixtureName; } public String getFailReason() { return this.failReason; } }