workflow_categoryitem.java

来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 174 行

JAVA
174
字号
package com.vere.manager.workflow.item;import java.io.*;public class Workflow_categoryItem implements Serializable{	private String id;//	private String id_no;//	private String pid;//上级分类	private String nodepath;//上级路径	private String name;//模板名称	private String instruction;//说明	private boolean is_flow=false;//判断是否流程	private String func_id;//功能编号	private String func_name;//功能名称	public Workflow_categoryItem()	{	}	/**	 * @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;	}		/**	 * @see	判断是否流程	 */	public boolean getIs_flow()	{		return this.is_flow;	}	/**	 * @see	判断是否流程	 */	public void setIs_flow(boolean is_flow)	{		this.is_flow=is_flow;	}	/**	 * @see	功能编号	 */	public String getFunc_id()	{		if(this.func_id==null)			this.func_id="";		return this.func_id;	}	/**	 * @see	功能编号	 */	public void setFunc_id(String func_id)	{		this.func_id=func_id;	}	/**	 * @see	功能名称	 */	public String getFunc_name()	{		if(this.func_name==null)			this.func_name="";		return this.func_name;	}	/**	 * @see	功能名称	 */	public void setFunc_name(String func_name)	{		this.func_name=func_name;	}	}

⌨️ 快捷键说明

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