📄 rolerightentity.java
字号:
package crm.entity.sys;
/**
* RoleRightEntity(实体类)对应 角色权限关系表(sys_role_right)
*/
public class RoleRightEntity implements java.io.Serializable {
private static final long serialVersionUID = 1159749864461917290L;
private Long rfId; //关系编号
private RightEntity sysRight; //权限实体对象 在多的一方
private RoleEntity sysRole; //权限编号
// Constructors
/** default constructor */
public RoleRightEntity() {
}
/** full constructor */
public RoleRightEntity(RightEntity sysRight, RoleEntity sysRole) {
this.sysRight = sysRight;
this.sysRole = sysRole;
}
// Property accessors
public Long getRfId() {
return this.rfId;
}
public void setRfId(Long rfId) {
this.rfId = rfId;
}
public RightEntity getSysRight() {
return this.sysRight;
}
public void setSysRight(RightEntity sysRight) {
this.sysRight = sysRight;
}
public RoleEntity getSysRole() {
return this.sysRole;
}
public void setSysRole(RoleEntity sysRole) {
this.sysRole = sysRole;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -