oa_waitaffairitem.java

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

JAVA
300
字号
package com.vere.oa.waitaffair.item;	import java.io.*;import com.vere.manager.item.Oa_dictionaryItem;	public class Oa_waitaffairItem implements Serializable	{		private String id;//		private String waitaffair_type;//事宜类别		private String title;//标题		private String send_user;//发送用户		private String send_name;//发送人		private String receive_user;//接收用户		private String receive_name;//接收人		private String receive_ip;//接收人ip地址		private String send_time;//发送日期		private String waitaffair_status;//状态		private String read_user;//阅读用户		private String read_name;//阅读人		private String read_time;//阅读日期		private String url;//连接地址				private  Oa_dictionaryItem oa_dictionaryItem;//事宜类别		private  Oa_dictionaryItem waitaffair_statusItem;//状态		public Oa_waitaffairItem()		{		}		/**		 * @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 getWaitaffair_type()		{			if(this.waitaffair_type==null)				this.waitaffair_type="";			return this.waitaffair_type;		}		/**		 * @see	事宜类别		 */		public void setWaitaffair_type(String waitaffair_type)		{			this.waitaffair_type=waitaffair_type;		}		/**		 * @see	标题		 */		public String getTitle()		{			if(this.title==null)				this.title="";			return this.title;		}		/**		 * @see	标题		 */		public void setTitle(String title)		{			this.title=title;		}		/**		 * @see	发送用户		 */		public String getSend_user()		{			if(this.send_user==null)				this.send_user="";			return this.send_user;		}		/**		 * @see	发送用户		 */		public void setSend_user(String send_user)		{			this.send_user=send_user;		}		/**		 * @see	发送人		 */		public String getSend_name()		{			if(this.send_name==null)				this.send_name="";			return this.send_name;		}		/**		 * @see	发送人		 */		public void setSend_name(String send_name)		{			this.send_name=send_name;		}		/**		 * @see	接收用户		 */		public String getReceive_user()		{			if(this.receive_user==null)				this.receive_user="";			return this.receive_user;		}		/**		 * @see	接收用户		 */		public void setReceive_user(String receive_user)		{			this.receive_user=receive_user;		}		/**		 * @see	接收人		 */		public String getReceive_name()		{			if(this.receive_name==null)				this.receive_name="";			return this.receive_name;		}		/**		 * @see	接收人		 */		public void setReceive_name(String receive_name)		{			this.receive_name=receive_name;		}		/**		 * @see	接收人ip地址		 */		public String getReceive_ip()		{			if(this.receive_ip==null)				this.receive_ip="";			return this.receive_ip;		}		/**		 * @see	接收人ip地址		 */		public void setReceive_ip(String receive_ip)		{			this.receive_ip=receive_ip;		}		/**		 * @see	发送日期		 */		public String getSend_time()		{			if(this.send_time==null)				this.send_time="";			return this.send_time;		}		/**		 * @see	发送日期		 */		public void setSend_time(String send_time)		{			this.send_time=send_time;		}		/**		 * @see	状态		 */		public String getWaitaffair_status()		{			if(this.waitaffair_status==null)				this.waitaffair_status="";			return this.waitaffair_status;		}		/**		 * @see	状态		 */		public void setWaitaffair_status(String waitaffair_status)		{			this.waitaffair_status=waitaffair_status;		}		/**		 * @see	阅读用户		 */		public String getRead_user()		{			if(this.read_user==null)				this.read_user="";			return this.read_user;		}		/**		 * @see	阅读用户		 */		public void setRead_user(String read_user)		{			this.read_user=read_user;		}		/**		 * @see	阅读人		 */		public String getRead_name()		{			if(this.read_name==null)				this.read_name="";			return this.read_name;		}		/**		 * @see	阅读人		 */		public void setRead_name(String read_name)		{			this.read_name=read_name;		}		/**		 * @see	阅读日期		 */		public String getRead_time()		{			if(this.read_time==null)				this.read_time="";			return this.read_time;		}		/**		 * @see	阅读日期		 */		public void setRead_time(String read_time)		{			this.read_time=read_time;		}		/**		 * @see	连接地址		 */		public String getUrl()		{			if(this.url==null)				this.url="";			return this.url;		}		/**		 * @see	连接地址		 */		public void setUrl(String url)		{			this.url=url;		}		/**		 * @see	事宜类别		 */		public Oa_dictionaryItem getOa_dictionaryItem()		{			return this.oa_dictionaryItem;		}		/**		 * @see	事宜类别		 */		public void setOa_dictionaryItem(Oa_dictionaryItem oa_dictionaryItem)		{			this.oa_dictionaryItem=oa_dictionaryItem;		}		/**		 * @see	状态		 */		public Oa_dictionaryItem getWaitaffair_statusItem()		{			return this.waitaffair_statusItem;		}		/**		 * @see	状态		 */		public void setWaitaffair_statusItem(Oa_dictionaryItem waitaffair_statusItem)		{			this.waitaffair_statusItem=waitaffair_statusItem;		}}

⌨️ 快捷键说明

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