⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysroleright.java

📁 本系统基本完善了CRM管理系统的各个模块
💻 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 + -