📄 sysroleright.java
字号:
package com.accp.entity.jb_crm_team0;
public class SysRoleRight implements java.io.Serializable {
// Fields
private Integer RRId;
private SysRole sysRole;
private SysRight sysRight;
// Constructors
/** default constructor */
public SysRoleRight() {
}
/** full constructor */
public SysRoleRight(SysRole sysRole, SysRight sysRight) {
this.sysRole = sysRole;
this.sysRight = sysRight;
}
// Property accessors
public Integer getRRId() {
return this.RRId;
}
public void setRRId(Integer RRId) {
this.RRId = RRId;
}
public SysRole getSysRole() {
return this.sysRole;
}
public void setSysRole(SysRole sysRole) {
this.sysRole = sysRole;
}
public SysRight getSysRight() {
return this.sysRight;
}
public void setSysRight(SysRight sysRight) {
this.sysRight = sysRight;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -