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

📄 workflow_lineitem.java

📁 java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理,角色管理,权限) 2.工作流管理 (流程类别,流程) 3.字典管理 (国家,省份,城市,公共数据字典) 4.项目
💻 JAVA
字号:
package com.vere.manager.workflow.item;	import java.io.*;	public class Workflow_lineItem implements Serializable	{		private String id;//		private String workflow_id;//流程编号		private String sendstateid;//发送状态编号		private String receiveid;//接收状态编号		private Workflow_stateItem sendState;		private Workflow_stateItem receiveState;		private String name;		public Workflow_lineItem()		{		}		/**		 * @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 getWorkflow_id()		{			if(this.workflow_id==null)				this.workflow_id="";			return this.workflow_id;		}		/**		 * @see	流程编号		 */		public void setWorkflow_id(String workflow_id)		{			this.workflow_id=workflow_id;		}		/**		 * @see	发送状态编号		 */		public String getSendstateid()		{			if(this.sendstateid==null)				this.sendstateid="";			return this.sendstateid;		}		/**		 * @see	发送状态编号		 */		public void setSendstateid(String sendstateid)		{			this.sendstateid=sendstateid;		}		/**		 * @see	接收状态编号		 */		public String getReceiveid()		{			if(this.receiveid==null)				this.receiveid="";			return this.receiveid;		}		/**		 * @see	接收状态编号		 */		public void setReceiveid(String receiveid)		{			this.receiveid=receiveid;		}						public Workflow_stateItem getSendState()		{			return this.sendState;		}		public void setSendState(Workflow_stateItem sendState)		{			this.sendState=sendState;		}				public Workflow_stateItem getReceiveState()		{			return this.receiveState;		}		public void setReceiveState(Workflow_stateItem receiveState)		{			this.receiveState=receiveState;		}				/**		 * @see	名称		 */		public String getName()		{			if(this.name==null)				this.name="";			return this.name;		}		/**		 * @see	名称		 */		public void setName(String name)		{			this.name=name;		}}

⌨️ 快捷键说明

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