📄 abstractpermission.java
字号:
package com.sgm.partybranch.vo.sysadmin;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractPermission entity provides the base persistence definition of the
* Permission entity. @author MyEclipse Persistence Tools
*/
public abstract class AbstractPermission implements java.io.Serializable {
// Fields
private String permissionId;
private String parentId;
private String url;
private String title;
private String target;
private Boolean isLeaf;
// Constructors
/** default constructor */
public AbstractPermission() {
}
/** full constructor */
public AbstractPermission(String parentId, String url, String title,
String target, Boolean isLeaf) {
this.parentId = parentId;
this.url = url;
this.title = title;
this.target = target;
this.isLeaf = isLeaf;
}
// Property accessors
public String getPermissionId() {
return this.permissionId;
}
public void setPermissionId(String permissionId) {
this.permissionId = permissionId;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
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 Boolean getIsLeaf() {
return this.isLeaf;
}
public void setIsLeaf(Boolean isLeaf) {
this.isLeaf = isLeaf;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -