treenodevalue.java

来自「企业进销存源码」· Java 代码 · 共 78 行

JAVA
78
字号
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 + =
减小字号Ctrl + -
显示快捷键?