package com.qianwen.smartman.modules.cps.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/cps/excel/EmployeeExcel.class */ public class EmployeeExcel implements Serializable { private static final long serialVersionUID = 1; @ExcelProperty({"员工工号"}) private String jobNumber; @ExcelProperty({"员工姓名"}) private String name; @ExcelProperty({"所属部门"}) private String organizationName; @ExcelProperty({"岗位"}) private String postName; @ExcelProperty({"邮箱"}) private String email; @ExcelProperty({"手机号"}) private String tel; @ExcelProperty({"入职日期"}) private String hireDate; @ExcelProperty({"账号"}) private String account; @ExcelProperty({"PIN码"}) private String pinCode; @ExcelProperty({"状态"}) private String statusName; @ExcelProperty({"数据权限"}) private String deptName; public void setJobNumber(final String jobNumber) { this.jobNumber = jobNumber; } public void setName(final String name) { this.name = name; } public void setOrganizationName(final String organizationName) { this.organizationName = organizationName; } public void setPostName(final String postName) { this.postName = postName; } public void setEmail(final String email) { this.email = email; } public void setTel(final String tel) { this.tel = tel; } public void setHireDate(final String hireDate) { this.hireDate = hireDate; } public void setAccount(final String account) { this.account = account; } public void setPinCode(final String pinCode) { this.pinCode = pinCode; } public void setStatusName(final String statusName) { this.statusName = statusName; } public void setDeptName(final String deptName) { this.deptName = deptName; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof EmployeeExcel) { EmployeeExcel other = (EmployeeExcel) o; if (other.canEqual(this)) { Object this$jobNumber = getJobNumber(); Object other$jobNumber = other.getJobNumber(); if (this$jobNumber == null) { if (other$jobNumber != null) { return false; } } else if (!this$jobNumber.equals(other$jobNumber)) { return false; } Object this$name = getName(); Object other$name = other.getName(); if (this$name == null) { if (other$name != null) { return false; } } else if (!this$name.equals(other$name)) { return false; } Object this$organizationName = getOrganizationName(); Object other$organizationName = other.getOrganizationName(); if (this$organizationName == null) { if (other$organizationName != null) { return false; } } else if (!this$organizationName.equals(other$organizationName)) { return false; } Object this$postName = getPostName(); Object other$postName = other.getPostName(); if (this$postName == null) { if (other$postName != null) { return false; } } else if (!this$postName.equals(other$postName)) { return false; } Object this$email = getEmail(); Object other$email = other.getEmail(); if (this$email == null) { if (other$email != null) { return false; } } else if (!this$email.equals(other$email)) { return false; } Object this$tel = getTel(); Object other$tel = other.getTel(); if (this$tel == null) { if (other$tel != null) { return false; } } else if (!this$tel.equals(other$tel)) { return false; } Object this$hireDate = getHireDate(); Object other$hireDate = other.getHireDate(); if (this$hireDate == null) { if (other$hireDate != null) { return false; } } else if (!this$hireDate.equals(other$hireDate)) { return false; } Object this$account = getAccount(); Object other$account = other.getAccount(); if (this$account == null) { if (other$account != null) { return false; } } else if (!this$account.equals(other$account)) { return false; } Object this$pinCode = getPinCode(); Object other$pinCode = other.getPinCode(); if (this$pinCode == null) { if (other$pinCode != null) { return false; } } else if (!this$pinCode.equals(other$pinCode)) { return false; } Object this$statusName = getStatusName(); Object other$statusName = other.getStatusName(); if (this$statusName == null) { if (other$statusName != null) { return false; } } else if (!this$statusName.equals(other$statusName)) { return false; } Object this$deptName = getDeptName(); Object other$deptName = other.getDeptName(); return this$deptName == null ? other$deptName == null : this$deptName.equals(other$deptName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof EmployeeExcel; } public int hashCode() { Object $jobNumber = getJobNumber(); int result = (1 * 59) + ($jobNumber == null ? 43 : $jobNumber.hashCode()); Object $name = getName(); int result2 = (result * 59) + ($name == null ? 43 : $name.hashCode()); Object $organizationName = getOrganizationName(); int result3 = (result2 * 59) + ($organizationName == null ? 43 : $organizationName.hashCode()); Object $postName = getPostName(); int result4 = (result3 * 59) + ($postName == null ? 43 : $postName.hashCode()); Object $email = getEmail(); int result5 = (result4 * 59) + ($email == null ? 43 : $email.hashCode()); Object $tel = getTel(); int result6 = (result5 * 59) + ($tel == null ? 43 : $tel.hashCode()); Object $hireDate = getHireDate(); int result7 = (result6 * 59) + ($hireDate == null ? 43 : $hireDate.hashCode()); Object $account = getAccount(); int result8 = (result7 * 59) + ($account == null ? 43 : $account.hashCode()); Object $pinCode = getPinCode(); int result9 = (result8 * 59) + ($pinCode == null ? 43 : $pinCode.hashCode()); Object $statusName = getStatusName(); int result10 = (result9 * 59) + ($statusName == null ? 43 : $statusName.hashCode()); Object $deptName = getDeptName(); return (result10 * 59) + ($deptName == null ? 43 : $deptName.hashCode()); } public String toString() { return "EmployeeExcel(jobNumber=" + getJobNumber() + ", name=" + getName() + ", organizationName=" + getOrganizationName() + ", postName=" + getPostName() + ", email=" + getEmail() + ", tel=" + getTel() + ", hireDate=" + getHireDate() + ", account=" + getAccount() + ", pinCode=" + getPinCode() + ", statusName=" + getStatusName() + ", deptName=" + getDeptName() + ")"; } public String getJobNumber() { return this.jobNumber; } public String getName() { return this.name; } public String getOrganizationName() { return this.organizationName; } public String getPostName() { return this.postName; } public String getEmail() { return this.email; } public String getTel() { return this.tel; } public String getHireDate() { return this.hireDate; } public String getAccount() { return this.account; } public String getPinCode() { return this.pinCode; } public String getStatusName() { return this.statusName; } public String getDeptName() { return this.deptName; } }