oa_archive_informationitem.java

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

JAVA
389
字号
package com.vere.oa.archive.item;	import java.io.*;import com.vere.manager.item.Oa_dictionaryItem;	public class Oa_archive_informationItem implements Serializable	{		private String id;//		private String archive_category_id;//档案类别		private String archive_category_nodepath;//档案类别上级		private String timelimit_type;//期限类别		private String start_timelimit;//开始期限		private String end_timelimit;//结束期限		private String archive_no;//档案号		private String archive_title;//档案名		private String approval_user;//审核用户		private String approval_name;//审核人		private String borrow_departmentid;//借阅部门		private String borrow_department;//借阅部门编号		private String archive_user;//归档用户		private String archive_name;//归档人		private String archive_time;//归档时间		private String save_location;//存放地点		private String introduction;//内容简介		private String meno;//备注		private String fileExt;//附件		private  Oa_archive_categoryItem oa_archive_categoryItem;//档案类别		private  Oa_dictionaryItem oa_dictionaryItem;//期限类别		public Oa_archive_informationItem()		{		}		/**		 * @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 getArchive_category_id()		{			if(this.archive_category_id==null)				this.archive_category_id="";			return this.archive_category_id;		}		/**		 * @see	档案类别		 */		public void setArchive_category_id(String archive_category_id)		{			this.archive_category_id=archive_category_id;		}		/**		 * @see	档案类别上级		 */		public String getArchive_category_nodepath()		{			if(this.archive_category_nodepath==null)				this.archive_category_nodepath="";			return this.archive_category_nodepath;		}		/**		 * @see	档案类别上级		 */		public void setArchive_category_nodepath(String archive_category_nodepath)		{			this.archive_category_nodepath=archive_category_nodepath;		}		/**		 * @see	期限类别		 */		public String getTimelimit_type()		{			if(this.timelimit_type==null)				this.timelimit_type="";			return this.timelimit_type;		}		/**		 * @see	期限类别		 */		public void setTimelimit_type(String timelimit_type)		{			this.timelimit_type=timelimit_type;		}		/**		 * @see	开始期限		 */		public String getStart_timelimit()		{			if(this.start_timelimit==null)				this.start_timelimit="";			return this.start_timelimit;		}		/**		 * @see	开始期限		 */		public void setStart_timelimit(String start_timelimit)		{			this.start_timelimit=start_timelimit;		}		/**		 * @see	结束期限		 */		public String getEnd_timelimit()		{			if(this.end_timelimit==null)				this.end_timelimit="";			return this.end_timelimit;		}		/**		 * @see	结束期限		 */		public void setEnd_timelimit(String end_timelimit)		{			this.end_timelimit=end_timelimit;		}		/**		 * @see	档案号		 */		public String getArchive_no()		{			if(this.archive_no==null)				this.archive_no="";			return this.archive_no;		}		/**		 * @see	档案号		 */		public void setArchive_no(String archive_no)		{			this.archive_no=archive_no;		}		/**		 * @see	档案名		 */		public String getArchive_title()		{			if(this.archive_title==null)				this.archive_title="";			return this.archive_title;		}		/**		 * @see	档案名		 */		public void setArchive_title(String archive_title)		{			this.archive_title=archive_title;		}		/**		 * @see	审核用户		 */		public String getApproval_user()		{			if(this.approval_user==null)				this.approval_user="";			return this.approval_user;		}		/**		 * @see	审核用户		 */		public void setApproval_user(String approval_user)		{			this.approval_user=approval_user;		}		/**		 * @see	审核人		 */		public String getApproval_name()		{			if(this.approval_name==null)				this.approval_name="";			return this.approval_name;		}		/**		 * @see	审核人		 */		public void setApproval_name(String approval_name)		{			this.approval_name=approval_name;		}		/**		 * @see	借阅部门		 */		public String getBorrow_departmentid()		{			if(this.borrow_departmentid==null)				this.borrow_departmentid="";			return this.borrow_departmentid;		}		/**		 * @see	借阅部门		 */		public void setBorrow_departmentid(String borrow_departmentid)		{			this.borrow_departmentid=borrow_departmentid;		}		/**		 * @see	借阅部门编号		 */		public String getBorrow_department()		{			if(this.borrow_department==null)				this.borrow_department="";			return this.borrow_department;		}		/**		 * @see	借阅部门编号		 */		public void setBorrow_department(String borrow_department)		{			this.borrow_department=borrow_department;		}		/**		 * @see	归档用户		 */		public String getArchive_user()		{			if(this.archive_user==null)				this.archive_user="";			return this.archive_user;		}		/**		 * @see	归档用户		 */		public void setArchive_user(String archive_user)		{			this.archive_user=archive_user;		}		/**		 * @see	归档人		 */		public String getArchive_name()		{			if(this.archive_name==null)				this.archive_name="";			return this.archive_name;		}		/**		 * @see	归档人		 */		public void setArchive_name(String archive_name)		{			this.archive_name=archive_name;		}		/**		 * @see	归档时间		 */		public String getArchive_time()		{			if(this.archive_time==null)				this.archive_time="";			return this.archive_time;		}		/**		 * @see	归档时间		 */		public void setArchive_time(String archive_time)		{			this.archive_time=archive_time;		}		/**		 * @see	存放地点		 */		public String getSave_location()		{			if(this.save_location==null)				this.save_location="";			return this.save_location;		}		/**		 * @see	存放地点		 */		public void setSave_location(String save_location)		{			this.save_location=save_location;		}		/**		 * @see	内容简介		 */		public String getIntroduction()		{			if(this.introduction==null)				this.introduction="";			return this.introduction;		}		/**		 * @see	内容简介		 */		public void setIntroduction(String introduction)		{			this.introduction=introduction;		}		/**		 * @see	备注		 */		public String getMeno()		{			if(this.meno==null)				this.meno="";			return this.meno;		}		/**		 * @see	备注		 */		public void setMeno(String meno)		{			this.meno=meno;		}		/**		 * @see	附件		 */		public String getFileExt()		{			if(this.fileExt==null)				this.fileExt="";			return this.fileExt;		}		/**		 * @see	附件		 */		public void setFileExt(String fileExt)		{			this.fileExt=fileExt;		}		/**		 * @see	档案类别		 */		public Oa_archive_categoryItem getOa_archive_categoryItem()		{			return this.oa_archive_categoryItem;		}		/**		 * @see	档案类别		 */		public void setOa_archive_categoryItem(Oa_archive_categoryItem oa_archive_categoryItem)		{			this.oa_archive_categoryItem=oa_archive_categoryItem;		}		/**		 * @see	期限类别		 */		public Oa_dictionaryItem getOa_dictionaryItem()		{			return this.oa_dictionaryItem;		}		/**		 * @see	期限类别		 */		public void setOa_dictionaryItem(Oa_dictionaryItem oa_dictionaryItem)		{			this.oa_dictionaryItem=oa_dictionaryItem;		}}

⌨️ 快捷键说明

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