workflow_lineitem.java

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

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