📄 abstracttrole.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 + -