package com.qianwen.smartman.modules.system.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;
|
import java.util.Date;
|
|
@HeadRowHeight(20)
|
@ColumnWidth(25)
|
@ContentRowHeight(18)
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/excel/UserExcel.class */
|
public class UserExcel implements Serializable {
|
private static final long serialVersionUID = 1;
|
@ExcelIgnore
|
@ExcelProperty({"用户平台"})
|
private String userType;
|
@ColumnWidth(20)
|
@ExcelProperty({"用户平台名称"})
|
private String userTypeName;
|
@ColumnWidth(15)
|
@ExcelProperty({"账户"})
|
private String account;
|
@ColumnWidth(10)
|
@ExcelProperty({"姓名"})
|
private String realName;
|
@ExcelProperty({"邮箱"})
|
private String email;
|
@ColumnWidth(15)
|
@ExcelProperty({"手机"})
|
private String phone;
|
@ExcelIgnore
|
@ExcelProperty({"角色ID"})
|
private String roleId;
|
@ExcelIgnore
|
@ExcelProperty({"部门ID"})
|
private String deptId;
|
@ExcelIgnore
|
@ExcelProperty({"岗位ID"})
|
private String postId;
|
@ExcelProperty({"角色名称"})
|
private String roleName;
|
@ExcelProperty({"部门名称"})
|
private String deptName;
|
@ExcelProperty({"岗位名称"})
|
private String postName;
|
@ColumnWidth(20)
|
@ExcelProperty({"生日"})
|
private Date birthday;
|
|
public void setUserType(final String userType) {
|
this.userType = userType;
|
}
|
|
public void setUserTypeName(final String userTypeName) {
|
this.userTypeName = userTypeName;
|
}
|
|
public void setAccount(final String account) {
|
this.account = account;
|
}
|
|
public void setRealName(final String realName) {
|
this.realName = realName;
|
}
|
|
public void setEmail(final String email) {
|
this.email = email;
|
}
|
|
public void setPhone(final String phone) {
|
this.phone = phone;
|
}
|
|
public void setRoleId(final String roleId) {
|
this.roleId = roleId;
|
}
|
|
public void setDeptId(final String deptId) {
|
this.deptId = deptId;
|
}
|
|
public void setPostId(final String postId) {
|
this.postId = postId;
|
}
|
|
public void setRoleName(final String roleName) {
|
this.roleName = roleName;
|
}
|
|
public void setDeptName(final String deptName) {
|
this.deptName = deptName;
|
}
|
|
public void setPostName(final String postName) {
|
this.postName = postName;
|
}
|
|
public void setBirthday(final Date birthday) {
|
this.birthday = birthday;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof UserExcel) {
|
UserExcel other = (UserExcel) o;
|
if (other.canEqual(this)) {
|
Object this$userType = getUserType();
|
Object other$userType = other.getUserType();
|
if (this$userType == null) {
|
if (other$userType != null) {
|
return false;
|
}
|
} else if (!this$userType.equals(other$userType)) {
|
return false;
|
}
|
Object this$userTypeName = getUserTypeName();
|
Object other$userTypeName = other.getUserTypeName();
|
if (this$userTypeName == null) {
|
if (other$userTypeName != null) {
|
return false;
|
}
|
} else if (!this$userTypeName.equals(other$userTypeName)) {
|
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$realName = getRealName();
|
Object other$realName = other.getRealName();
|
if (this$realName == null) {
|
if (other$realName != null) {
|
return false;
|
}
|
} else if (!this$realName.equals(other$realName)) {
|
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$phone = getPhone();
|
Object other$phone = other.getPhone();
|
if (this$phone == null) {
|
if (other$phone != null) {
|
return false;
|
}
|
} else if (!this$phone.equals(other$phone)) {
|
return false;
|
}
|
Object this$roleId = getRoleId();
|
Object other$roleId = other.getRoleId();
|
if (this$roleId == null) {
|
if (other$roleId != null) {
|
return false;
|
}
|
} else if (!this$roleId.equals(other$roleId)) {
|
return false;
|
}
|
Object this$deptId = getDeptId();
|
Object other$deptId = other.getDeptId();
|
if (this$deptId == null) {
|
if (other$deptId != null) {
|
return false;
|
}
|
} else if (!this$deptId.equals(other$deptId)) {
|
return false;
|
}
|
Object this$postId = getPostId();
|
Object other$postId = other.getPostId();
|
if (this$postId == null) {
|
if (other$postId != null) {
|
return false;
|
}
|
} else if (!this$postId.equals(other$postId)) {
|
return false;
|
}
|
Object this$roleName = getRoleName();
|
Object other$roleName = other.getRoleName();
|
if (this$roleName == null) {
|
if (other$roleName != null) {
|
return false;
|
}
|
} else if (!this$roleName.equals(other$roleName)) {
|
return false;
|
}
|
Object this$deptName = getDeptName();
|
Object other$deptName = other.getDeptName();
|
if (this$deptName == null) {
|
if (other$deptName != null) {
|
return false;
|
}
|
} else if (!this$deptName.equals(other$deptName)) {
|
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$birthday = getBirthday();
|
Object other$birthday = other.getBirthday();
|
return this$birthday == null ? other$birthday == null : this$birthday.equals(other$birthday);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof UserExcel;
|
}
|
|
public int hashCode() {
|
Object $userType = getUserType();
|
int result = (1 * 59) + ($userType == null ? 43 : $userType.hashCode());
|
Object $userTypeName = getUserTypeName();
|
int result2 = (result * 59) + ($userTypeName == null ? 43 : $userTypeName.hashCode());
|
Object $account = getAccount();
|
int result3 = (result2 * 59) + ($account == null ? 43 : $account.hashCode());
|
Object $realName = getRealName();
|
int result4 = (result3 * 59) + ($realName == null ? 43 : $realName.hashCode());
|
Object $email = getEmail();
|
int result5 = (result4 * 59) + ($email == null ? 43 : $email.hashCode());
|
Object $phone = getPhone();
|
int result6 = (result5 * 59) + ($phone == null ? 43 : $phone.hashCode());
|
Object $roleId = getRoleId();
|
int result7 = (result6 * 59) + ($roleId == null ? 43 : $roleId.hashCode());
|
Object $deptId = getDeptId();
|
int result8 = (result7 * 59) + ($deptId == null ? 43 : $deptId.hashCode());
|
Object $postId = getPostId();
|
int result9 = (result8 * 59) + ($postId == null ? 43 : $postId.hashCode());
|
Object $roleName = getRoleName();
|
int result10 = (result9 * 59) + ($roleName == null ? 43 : $roleName.hashCode());
|
Object $deptName = getDeptName();
|
int result11 = (result10 * 59) + ($deptName == null ? 43 : $deptName.hashCode());
|
Object $postName = getPostName();
|
int result12 = (result11 * 59) + ($postName == null ? 43 : $postName.hashCode());
|
Object $birthday = getBirthday();
|
return (result12 * 59) + ($birthday == null ? 43 : $birthday.hashCode());
|
}
|
|
public String toString() {
|
return "UserExcel(userType=" + getUserType() + ", userTypeName=" + getUserTypeName() + ", account=" + getAccount() + ", realName=" + getRealName() + ", email=" + getEmail() + ", phone=" + getPhone() + ", roleId=" + getRoleId() + ", deptId=" + getDeptId() + ", postId=" + getPostId() + ", roleName=" + getRoleName() + ", deptName=" + getDeptName() + ", postName=" + getPostName() + ", birthday=" + getBirthday() + ")";
|
}
|
|
public String getUserType() {
|
return this.userType;
|
}
|
|
public String getUserTypeName() {
|
return this.userTypeName;
|
}
|
|
public String getAccount() {
|
return this.account;
|
}
|
|
public String getRealName() {
|
return this.realName;
|
}
|
|
public String getEmail() {
|
return this.email;
|
}
|
|
public String getPhone() {
|
return this.phone;
|
}
|
|
public String getRoleId() {
|
return this.roleId;
|
}
|
|
public String getDeptId() {
|
return this.deptId;
|
}
|
|
public String getPostId() {
|
return this.postId;
|
}
|
|
public String getRoleName() {
|
return this.roleName;
|
}
|
|
public String getDeptName() {
|
return this.deptName;
|
}
|
|
public String getPostName() {
|
return this.postName;
|
}
|
|
public Date getBirthday() {
|
return this.birthday;
|
}
|
}
|