oa_book_borrowitem.java

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

JAVA
317
字号
package com.vere.oa.book.item;	import java.io.*;	import com.vere.manager.item.*;	public class Oa_book_borrowItem implements Serializable	{		private String id;//		private String category;//图书类别		private String book_id;//图书编号		private String borrow_departmentid;//借阅部门编号		private String borrow_department_name;//借阅部门		private String borrow_user;//借阅用户		private String borrow_name;//借阅人		private String borrow_date;//借阅日期		private String back_date;//归还日期		private String realback_date;//实际归还日期		private String status;//状态		private String memo;//备注		private String approve_user;//批准用户		private String approve_name;//批准人		private String approve_date;//批准日期		private Oa_book_categoryItem book_categoryItem;		private Oa_dictionaryItem dictionaryItem;		public Oa_book_borrowItem()		{		}		/**		 * @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 getCategory()		{			if(this.category==null)				this.category="";			return this.category;		}		/**		 * @see	图书类别		 */		public void setCategory(String category)		{			this.category=category;		}		/**		 * @see	图书编号		 */		public String getBook_id()		{			if(this.book_id==null)				this.book_id="";			return this.book_id;		}		/**		 * @see	图书编号		 */		public void setBook_id(String book_id)		{			this.book_id=book_id;		}		/**		 * @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_name()		{			if(this.borrow_department_name==null)				this.borrow_department_name="";			return this.borrow_department_name;		}		/**		 * @see	借阅部门		 */		public void setBorrow_department_name(String borrow_department_name)		{			this.borrow_department_name=borrow_department_name;		}		/**		 * @see	借阅用户		 */		public String getBorrow_user()		{			if(this.borrow_user==null)				this.borrow_user="";			return this.borrow_user;		}		/**		 * @see	借阅用户		 */		public void setBorrow_user(String borrow_user)		{			this.borrow_user=borrow_user;		}		/**		 * @see	借阅人		 */		public String getBorrow_name()		{			if(this.borrow_name==null)				this.borrow_name="";			return this.borrow_name;		}		/**		 * @see	借阅人		 */		public void setBorrow_name(String borrow_name)		{			this.borrow_name=borrow_name;		}		/**		 * @see	借阅日期		 */		public String getBorrow_date()		{			if(this.borrow_date==null)				this.borrow_date="";			return this.borrow_date;		}		/**		 * @see	借阅日期		 */		public void setBorrow_date(String borrow_date)		{			this.borrow_date=borrow_date;		}		/**		 * @see	归还日期		 */		public String getBack_date()		{			if(this.back_date==null)				this.back_date="";			return this.back_date;		}		/**		 * @see	归还日期		 */		public void setBack_date(String back_date)		{			this.back_date=back_date;		}		/**		 * @see	实际归还日期		 */		public String getRealback_date()		{			if(this.realback_date==null)				this.realback_date="";			return this.realback_date;		}		/**		 * @see	实际归还日期		 */		public void setRealback_date(String realback_date)		{			this.realback_date=realback_date;		}		/**		 * @see	状态		 */		public String getStatus()		{			if(this.status==null)				this.status="";			return this.status;		}		/**		 * @see	状态		 */		public void setStatus(String status)		{			this.status=status;		}		/**		 * @see	备注		 */		public String getMemo()		{			if(this.memo==null)				this.memo="";			return this.memo;		}		/**		 * @see	备注		 */		public void setMemo(String memo)		{			this.memo=memo;		}		/**		 * @see	批准用户		 */		public String getApprove_user()		{			if(this.approve_user==null)				this.approve_user="";			return this.approve_user;		}		/**		 * @see	批准用户		 */		public void setApprove_user(String approve_user)		{			this.approve_user=approve_user;		}		/**		 * @see	批准人		 */		public String getApprove_name()		{			if(this.approve_name==null)				this.approve_name="";			return this.approve_name;		}		/**		 * @see	批准人		 */		public void setApprove_name(String approve_name)		{			this.approve_name=approve_name;		}		/**		 * @see	批准日期		 */		public String getApprove_date()		{			if(this.approve_date==null)				this.approve_date="";			return this.approve_date;		}		/**		 * @see	批准日期		 */		public void setApprove_date(String approve_date)		{			this.approve_date=approve_date;		}				/**		 * @see	图书分类		 */		public Oa_book_categoryItem getOa_book_categoryItem()		{			return this.book_categoryItem;		}		/**		 * @see	图书分类		 */		public void setOa_book_categoryItem(Oa_book_categoryItem book_categoryItem)		{			this.book_categoryItem=book_categoryItem;		}				/**		 * @see	借阅状态		 */		public Oa_dictionaryItem getOa_dictionaryItem()		{			return this.dictionaryItem;		}		/**		 * @see	借阅状态		 */		public void setOa_dictionaryItem(Oa_dictionaryItem dictionaryItem)		{			this.dictionaryItem=dictionaryItem;		}}

⌨️ 快捷键说明

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