📄 function.java
字号:
package sample.mappings.function;
import java.util.HashSet;
import java.util.Set;
import sample.mappings.MisBean;
import sample.mappings.module.Module;
/**
* @author Toez
*
*/
public class Function extends MisBean {
private String name;
private String parentName;
private String url;
private String protectFunction;
private String note;
private Module module;
private Set roles = new HashSet();
public Module getModule() {
return module;
}
public void setModule(Module module) {
this.module = module;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
public String getProtectFunction() {
return protectFunction;
}
public void setProtectFunction(String protectFunction) {
this.protectFunction = protectFunction;
}
public Set getRoles() {
return roles;
}
public void setRoles(Set roles) {
this.roles = roles;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -