📄 role.java
字号:
package org.self.hrm.model;
import java.util.HashSet;
import java.util.Set;
/**
* Role entity.
*
* @author MyEclipse Persistence Tools
*/
public class Role implements java.io.Serializable {
// Fields
private String id;
private String name;
private String memo;
private Set actions = new HashSet(0);
private Set users = new HashSet(0);
// Constructors
/** default constructor */
public Role() {
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public Set getActions() {
return this.actions;
}
public void setActions(Set actions) {
this.actions = actions;
}
public Set getUsers() {
return this.users;
}
public void setUsers(Set users) {
this.users = users;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -