You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
227 lines
6.5 KiB
227 lines
6.5 KiB
4 years ago
|
package com.hai.entity;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
|
||
|
/**
|
||
|
* sec_role
|
||
|
* @author
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* 代码由工具生成
|
||
|
*
|
||
|
**/
|
||
|
public class SecRole implements Serializable {
|
||
|
/**
|
||
|
* 主键
|
||
|
*/
|
||
|
private Long id;
|
||
|
|
||
|
/**
|
||
|
* 角色名称
|
||
|
*/
|
||
|
private String roleName;
|
||
|
|
||
|
/**
|
||
|
* 角色描述
|
||
|
*/
|
||
|
private String roleDesc;
|
||
|
|
||
|
/**
|
||
|
* 角色类型 0:超级管理员 1:就业局 2:培训机构
|
||
|
*/
|
||
|
private Integer roleType;
|
||
|
|
||
|
/**
|
||
|
* 启用状态 0:禁用 1:启用 2:删除
|
||
|
*/
|
||
|
private Integer enableStatus;
|
||
|
|
||
|
/**
|
||
|
* 是否是主角色 0:否 1:是
|
||
|
*/
|
||
|
private Integer primaryRole;
|
||
|
|
||
|
/**
|
||
|
* 是否是模板角色 0:否 1:是
|
||
|
*/
|
||
|
private Integer templetType;
|
||
|
|
||
|
/**
|
||
|
* 所属公司(不必填)
|
||
|
*/
|
||
|
private Long companyId;
|
||
|
|
||
|
/**
|
||
|
* 所属模板角色id
|
||
|
*/
|
||
|
private Long tempRoleId;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
* 修改时间
|
||
|
*/
|
||
|
private Date updateTime;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
public Long getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public void setId(Long id) {
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public String getRoleName() {
|
||
|
return roleName;
|
||
|
}
|
||
|
|
||
|
public void setRoleName(String roleName) {
|
||
|
this.roleName = roleName;
|
||
|
}
|
||
|
|
||
|
public String getRoleDesc() {
|
||
|
return roleDesc;
|
||
|
}
|
||
|
|
||
|
public void setRoleDesc(String roleDesc) {
|
||
|
this.roleDesc = roleDesc;
|
||
|
}
|
||
|
|
||
|
public Integer getRoleType() {
|
||
|
return roleType;
|
||
|
}
|
||
|
|
||
|
public void setRoleType(Integer roleType) {
|
||
|
this.roleType = roleType;
|
||
|
}
|
||
|
|
||
|
public Integer getEnableStatus() {
|
||
|
return enableStatus;
|
||
|
}
|
||
|
|
||
|
public void setEnableStatus(Integer enableStatus) {
|
||
|
this.enableStatus = enableStatus;
|
||
|
}
|
||
|
|
||
|
public Integer getPrimaryRole() {
|
||
|
return primaryRole;
|
||
|
}
|
||
|
|
||
|
public void setPrimaryRole(Integer primaryRole) {
|
||
|
this.primaryRole = primaryRole;
|
||
|
}
|
||
|
|
||
|
public Integer getTempletType() {
|
||
|
return templetType;
|
||
|
}
|
||
|
|
||
|
public void setTempletType(Integer templetType) {
|
||
|
this.templetType = templetType;
|
||
|
}
|
||
|
|
||
|
public Long getCompanyId() {
|
||
|
return companyId;
|
||
|
}
|
||
|
|
||
|
public void setCompanyId(Long companyId) {
|
||
|
this.companyId = companyId;
|
||
|
}
|
||
|
|
||
|
public Long getTempRoleId() {
|
||
|
return tempRoleId;
|
||
|
}
|
||
|
|
||
|
public void setTempRoleId(Long tempRoleId) {
|
||
|
this.tempRoleId = tempRoleId;
|
||
|
}
|
||
|
|
||
|
public Date getCreateTime() {
|
||
|
return createTime;
|
||
|
}
|
||
|
|
||
|
public void setCreateTime(Date createTime) {
|
||
|
this.createTime = createTime;
|
||
|
}
|
||
|
|
||
|
public Date getUpdateTime() {
|
||
|
return updateTime;
|
||
|
}
|
||
|
|
||
|
public void setUpdateTime(Date updateTime) {
|
||
|
this.updateTime = updateTime;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean equals(Object that) {
|
||
|
if (this == that) {
|
||
|
return true;
|
||
|
}
|
||
|
if (that == null) {
|
||
|
return false;
|
||
|
}
|
||
|
if (getClass() != that.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
SecRole other = (SecRole) that;
|
||
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
||
|
&& (this.getRoleName() == null ? other.getRoleName() == null : this.getRoleName().equals(other.getRoleName()))
|
||
|
&& (this.getRoleDesc() == null ? other.getRoleDesc() == null : this.getRoleDesc().equals(other.getRoleDesc()))
|
||
|
&& (this.getRoleType() == null ? other.getRoleType() == null : this.getRoleType().equals(other.getRoleType()))
|
||
|
&& (this.getEnableStatus() == null ? other.getEnableStatus() == null : this.getEnableStatus().equals(other.getEnableStatus()))
|
||
|
&& (this.getPrimaryRole() == null ? other.getPrimaryRole() == null : this.getPrimaryRole().equals(other.getPrimaryRole()))
|
||
|
&& (this.getTempletType() == null ? other.getTempletType() == null : this.getTempletType().equals(other.getTempletType()))
|
||
|
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId()))
|
||
|
&& (this.getTempRoleId() == null ? other.getTempRoleId() == null : this.getTempRoleId().equals(other.getTempRoleId()))
|
||
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
|
||
|
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime()));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int hashCode() {
|
||
|
final int prime = 31;
|
||
|
int result = 1;
|
||
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
|
||
|
result = prime * result + ((getRoleName() == null) ? 0 : getRoleName().hashCode());
|
||
|
result = prime * result + ((getRoleDesc() == null) ? 0 : getRoleDesc().hashCode());
|
||
|
result = prime * result + ((getRoleType() == null) ? 0 : getRoleType().hashCode());
|
||
|
result = prime * result + ((getEnableStatus() == null) ? 0 : getEnableStatus().hashCode());
|
||
|
result = prime * result + ((getPrimaryRole() == null) ? 0 : getPrimaryRole().hashCode());
|
||
|
result = prime * result + ((getTempletType() == null) ? 0 : getTempletType().hashCode());
|
||
|
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode());
|
||
|
result = prime * result + ((getTempRoleId() == null) ? 0 : getTempRoleId().hashCode());
|
||
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
|
||
|
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
StringBuilder sb = new StringBuilder();
|
||
|
sb.append(getClass().getSimpleName());
|
||
|
sb.append(" [");
|
||
|
sb.append("Hash = ").append(hashCode());
|
||
|
sb.append(", id=").append(id);
|
||
|
sb.append(", roleName=").append(roleName);
|
||
|
sb.append(", roleDesc=").append(roleDesc);
|
||
|
sb.append(", roleType=").append(roleType);
|
||
|
sb.append(", enableStatus=").append(enableStatus);
|
||
|
sb.append(", primaryRole=").append(primaryRole);
|
||
|
sb.append(", templetType=").append(templetType);
|
||
|
sb.append(", companyId=").append(companyId);
|
||
|
sb.append(", tempRoleId=").append(tempRoleId);
|
||
|
sb.append(", createTime=").append(createTime);
|
||
|
sb.append(", updateTime=").append(updateTime);
|
||
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
||
|
sb.append("]");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|