| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package com.zhentao.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- import lombok.Data;
- /**
- * 角色权限关联表
- * @TableName admin_role_permission
- */
- @TableName(value ="admin_role_permission")
- @Data
- public class AdminRolePermission {
- /**
- * 主键ID
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 角色ID
- */
- private Integer roleId;
- /**
- * 权限ID
- */
- private Integer permissionId;
- /**
- * 创建时间
- */
- private Date createTime;
- @Override
- public boolean equals(Object that) {
- if (this == that) {
- return true;
- }
- if (that == null) {
- return false;
- }
- if (getClass() != that.getClass()) {
- return false;
- }
- AdminRolePermission other = (AdminRolePermission) that;
- return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
- && (this.getRoleId() == null ? other.getRoleId() == null : this.getRoleId().equals(other.getRoleId()))
- && (this.getPermissionId() == null ? other.getPermissionId() == null : this.getPermissionId().equals(other.getPermissionId()))
- && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()));
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
- result = prime * result + ((getRoleId() == null) ? 0 : getRoleId().hashCode());
- result = prime * result + ((getPermissionId() == null) ? 0 : getPermissionId().hashCode());
- result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().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(", roleId=").append(roleId);
- sb.append(", permissionId=").append(permissionId);
- sb.append(", createTime=").append(createTime);
- sb.append("]");
- return sb.toString();
- }
- }
|