📄 permission.java
字号:
package com.jsfabc.jsh.model.bo;
import java.util.HashSet;
import java.util.Set;
/**
* Permission generated by MyEclipse - Hibernate Tools
*/
public class Permission implements java.io.Serializable {
// Fields
private String id;
private String pid;
private String name;
private String url;
private String title;
private String target;
private String icon;
private String iconOpen;
private String opened;
private Set rolePermissions = new HashSet(0);
// Constructors
/** default constructor */
public Permission() {
}
/** minimal constructor */
public Permission(String pid, String name) {
this.pid = pid;
this.name = name;
}
/** full constructor */
public Permission(String pid, String name, String url, String title, String target, String icon, String iconOpen, String opened, Set rolePermissions) {
this.pid = pid;
this.name = name;
this.url = url;
this.title = title;
this.target = target;
this.icon = icon;
this.iconOpen = iconOpen;
this.opened = opened;
this.rolePermissions = rolePermissions;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getPid() {
return this.pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public String getIcon() {
return this.icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public String getIconOpen() {
return this.iconOpen;
}
public void setIconOpen(String iconOpen) {
this.iconOpen = iconOpen;
}
public String getOpened() {
return this.opened;
}
public void setOpened(String opened) {
this.opened = opened;
}
public Set getRolePermissions() {
return this.rolePermissions;
}
public void setRolePermissions(Set rolePermissions) {
this.rolePermissions = rolePermissions;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -