package com.hfkj.entity; import java.io.Serializable; /** * sec_permission * @author */ /** * * 代码由工具生成 * **/ public class SecPermission implements Serializable { /** * 主键 */ private Long id; /** * 权限名称 */ private String permissionName; /** * 权限编码 */ private String permissionCode; /** * 权限描述 */ private String permissionDesc; /** * 权限排序 */ private Integer sort; /** * 菜单ID */ private Long menuId; private static final long serialVersionUID = 1L; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getPermissionName() { return permissionName; } public void setPermissionName(String permissionName) { this.permissionName = permissionName; } public String getPermissionCode() { return permissionCode; } public void setPermissionCode(String permissionCode) { this.permissionCode = permissionCode; } public String getPermissionDesc() { return permissionDesc; } public void setPermissionDesc(String permissionDesc) { this.permissionDesc = permissionDesc; } public Integer getSort() { return sort; } public void setSort(Integer sort) { this.sort = sort; } public Long getMenuId() { return menuId; } public void setMenuId(Long menuId) { this.menuId = menuId; } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } SecPermission other = (SecPermission) that; return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getPermissionName() == null ? other.getPermissionName() == null : this.getPermissionName().equals(other.getPermissionName())) && (this.getPermissionCode() == null ? other.getPermissionCode() == null : this.getPermissionCode().equals(other.getPermissionCode())) && (this.getPermissionDesc() == null ? other.getPermissionDesc() == null : this.getPermissionDesc().equals(other.getPermissionDesc())) && (this.getSort() == null ? other.getSort() == null : this.getSort().equals(other.getSort())) && (this.getMenuId() == null ? other.getMenuId() == null : this.getMenuId().equals(other.getMenuId())); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getPermissionName() == null) ? 0 : getPermissionName().hashCode()); result = prime * result + ((getPermissionCode() == null) ? 0 : getPermissionCode().hashCode()); result = prime * result + ((getPermissionDesc() == null) ? 0 : getPermissionDesc().hashCode()); result = prime * result + ((getSort() == null) ? 0 : getSort().hashCode()); result = prime * result + ((getMenuId() == null) ? 0 : getMenuId().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(", permissionName=").append(permissionName); sb.append(", permissionCode=").append(permissionCode); sb.append(", permissionDesc=").append(permissionDesc); sb.append(", sort=").append(sort); sb.append(", menuId=").append(menuId); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }