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

📄 roleinfo.java

📁 权限组件的java代码写法例子下载
💻 JAVA
字号:
package com.parddu.crm.entity;

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

/**
 * RoleInfo entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class RoleInfo implements java.io.Serializable {

	// Fields

	private Integer roleId;
	private String roleName;
	private Set empRoles = new HashSet(0);
	private Set impowers = new HashSet(0);

	// Constructors

	/** default constructor */
	public RoleInfo() {
	}

	/** minimal constructor */
	public RoleInfo(String roleName) {
		this.roleName = roleName;
	}

	/** full constructor */
	public RoleInfo(String roleName, Set empRoles, Set impowers) {
		this.roleName = roleName;
		this.empRoles = empRoles;
		this.impowers = impowers;
	}

	// Property accessors

	public Integer getRoleId() {
		return this.roleId;
	}

	public void setRoleId(Integer roleId) {
		this.roleId = roleId;
	}

	public String getRoleName() {
		return this.roleName;
	}

	public void setRoleName(String roleName) {
		this.roleName = roleName;
	}

	public Set getEmpRoles() {
		return this.empRoles;
	}

	public void setEmpRoles(Set empRoles) {
		this.empRoles = empRoles;
	}

	public Set getImpowers() {
		return this.impowers;
	}

	public void setImpowers(Set impowers) {
		this.impowers = impowers;
	}

}

⌨️ 快捷键说明

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