AbstractTrole.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
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;
- }
- }