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

📄 abstracttrole.java

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 JAVA
字号:
package com.oa.module.office.role;

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

/**
 * AbstractTrole generated by MyEclipse - Hibernate Tools
 */

public abstract class AbstractTrole implements java.io.Serializable {

	// Fields
	private long rid; 

	private String rname;

	private String rmemo;

	private Set rolefunction = new HashSet();
	// Constructors

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

	/** full constructor */
	public AbstractTrole(String rname, String rmemo) {
		this.rname = rname;
		this.rmemo = rmemo;
	}

	// Property accessors

	public long getRid() {
		return this.rid;
	}

	public void setRid(long rid) {
		this.rid = rid;
	}

	public String getRname() {
		return this.rname;
	}

	public void setRname(String rname) {
		this.rname = rname;
	}

	public String getRmemo() {
		return this.rmemo;
	}

	public void setRmemo(String rmemo) {
		this.rmemo = rmemo;
	}

	public Set getRolefunction() {
		return rolefunction;
	}

	public void setRolefunction(Set rolefunction) {
		this.rolefunction = rolefunction;
	}

}

⌨️ 快捷键说明

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