⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dictionary_finacialitem.java

📁 java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理,角色管理,权限) 2.工作流管理 (流程类别,流程) 3.字典管理 (国家,省份,城市,公共数据字典) 4.项目
💻 JAVA
字号:
package com.vere.dictionary.item;import java.io.*;public class Dictionary_finacialItem implements Serializable{	private String id;//	private String id_no;//	private String pid;//上级分类	private String nodepath;//上级路径	private String name;//名称	private String instruction;//说明	public Dictionary_finacialItem()	{	}	/**	 * @see		 */	public String getId()	{		if(this.id==null)			this.id="";		return this.id;	}	/**	 * @see		 */	public void setId(String id)	{		this.id=id;	}	/**	 * @see		 */	public String getId_no()	{		if(this.id_no==null)			this.id_no="";		return this.id_no;	}	/**	 * @see		 */	public void setId_no(String id_no)	{		this.id_no=id_no;	}	/**	 * @see	上级分类	 */	public String getPid()	{		if(this.pid==null)			this.pid="";		return this.pid;	}	/**	 * @see	上级分类	 */	public void setPid(String pid)	{		this.pid=pid;	}	/**	 * @see	上级路径	 */	public String getNodepath()	{		if(this.nodepath==null)			this.nodepath="";		return this.nodepath;	}		/**	 * @see	上级路径	 */	public void setNodepath(String nodepath)	{		this.nodepath=nodepath;	}		/**	 * @see	模板名称	 */	public String getName()	{		if(this.name==null)			this.name="";		return this.name;	}	/**	 * @see	模板名称	 */	public void setName(String name)	{		this.name=name;	}	/**	 * @see	说明	 */	public String getInstruction()	{		if(this.instruction==null)			this.instruction="";		return this.instruction;	}	/**	 * @see	说明	 */	public void setInstruction(String instruction)	{		this.instruction=instruction;	}	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -