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

📄 role.java

📁 适合学生课程设计使用,这是我自己编写的一个系统.
💻 JAVA
字号:
package bean;

import java.util.Set;
import java.util.HashSet;

/**
 * @author   Administrator
 */
public class role extends info {
	private Set<popedom> pop = new HashSet<popedom>();		//与权限为多对多关系
	private Set<userInfo> ui = new HashSet<userInfo>();		//与用户为多对多关系
	private Set<module> mod = new HashSet<module>();		//与模块为多对多关系
	
	public role() {}
	
	/**
	 * @param pop   The pop to set.
	 * @uml.property   name="pop"
	 */
	public void setPop(Set<popedom> pop) {
		this.pop = pop;
	}
	
	/**
	 * @return   Returns the pop.
	 * @uml.property   name="pop"
	 */
	public Set<popedom> getPop() {
		return this.pop;
	}

	/**
	 * @param user   The user to set.
	 * @uml.property   name="user"
	 */
	public void setUi(Set<userInfo> ui) {
		this.ui = ui;
	}
	
	/**
	 * @return   Returns the user.
	 * @uml.property   name="user"
	 */
	public Set<userInfo> getUi() {
		return this.ui;
	}
	
	/**
	 * @param mod   The mod to set.
	 * @uml.property   name="mod"
	 */
	public void setMod(Set<module> mod) {
		this.mod = mod;
	}
	
	/**
	 * @return   Returns the mod.
	 * @uml.property   name="mod"
	 */
	public Set<module> getMod() {
		return this.mod;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -