📄 tree.java
字号:
package com.kongnan.bean;
/**
* Tree entity.
*
* @author MyEclipse Persistence Tools
*/
public class Tree 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;
// Constructors
/** default constructor */
public Tree() {
}
/** minimal constructor */
public Tree(String id, String pid, String name, String url) {
this.id = id;
this.pid = pid;
this.name = name;
this.url = url;
}
/** full constructor */
public Tree(String id, String pid, String name, String url, String title,
String target, String icon, String iconopen, String opened) {
this.id = id;
this.pid = pid;
this.name = name;
this.url = url;
this.title = title;
this.target = target;
this.icon = icon;
this.iconopen = iconopen;
this.opened = opened;
}
// 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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -