📄 treenodevalue.java
字号:
package com.web.util;
/**
*
*
* 树结点值对象
*/
public class TreeNodeValue {
protected String node_code;
protected String node_text;
protected String url;
protected String img;
/**
* Returns the node_code.
* @return String
*/
public String getNode_code() {
return node_code;
}
/**
* Returns the node_text.
* @return String
*/
public String getNode_text() {
return node_text;
}
/**
* Sets the node_code.
* @param node_code The node_code to set
*/
public void setNode_code(String node_code) {
this.node_code = node_code;
}
/**
* Sets the node_text.
* @param node_text The node_text to set
*/
public void setNode_text(String node_text) {
this.node_text = node_text;
}
/**
* Returns the img.
* @return String
*/
public String getImg() {
return img;
}
/**
* Returns the url.
* @return String
*/
public String getUrl() {
return url;
}
/**
* Sets the img.
* @param img The img to set
*/
public void setImg(String img) {
this.img = img;
}
/**
* Sets the url.
* @param url The url to set
*/
public void setUrl(String url) {
this.url = url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -