oa_book_informationitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 282 行
JAVA
282 行
package com.vere.oa.book.item; import java.io.*; public class Oa_book_informationItem implements Serializable { private String id;// private String category;//图书类别 private String book_id;//编号 private String name;//书名 private String writer;//作者 private String publisher;//出版社 private String book_no;//书号 private String buy_date;//购买日期 private String introduction;//介绍 private String fileExt;//电子文档 private String departmentid;//存放部门编号 private String department;//存放部门名称 private String location;//存放位置 private String book_status;//状态 private Oa_book_categoryItem book_categoryItem; public Oa_book_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 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 getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 书名 */ public void setName(String name) { this.name=name; } /** * @see 作者 */ public String getWriter() { if(this.writer==null) this.writer=""; return this.writer; } /** * @see 作者 */ public void setWriter(String writer) { this.writer=writer; } /** * @see 出版社 */ public String getPublisher() { if(this.publisher==null) this.publisher=""; return this.publisher; } /** * @see 出版社 */ public void setPublisher(String publisher) { this.publisher=publisher; } /** * @see 书号 */ public String getBook_no() { if(this.book_no==null) this.book_no=""; return this.book_no; } /** * @see 书号 */ public void setBook_no(String book_no) { this.book_no=book_no; } /** * @see 购买日期 */ public String getBuy_date() { if(this.buy_date==null) this.buy_date=""; return this.buy_date; } /** * @see 购买日期 */ public void setBuy_date(String buy_date) { this.buy_date=buy_date; } /** * @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 getFileExt() { if(this.fileExt==null) this.fileExt=""; return this.fileExt; } /** * @see 电子文档 */ public void setFileExt(String fileExt) { this.fileExt=fileExt; } /** * @see 存放部门编号 */ public String getDepartmentid() { if(this.departmentid==null) this.departmentid=""; return this.departmentid; } /** * @see 存放部门编号 */ public void setDepartmentid(String departmentid) { this.departmentid=departmentid; } /** * @see 存放部门名称 */ public String getDepartment() { if(this.department==null) this.department=""; return this.department; } /** * @see 存放部门名称 */ public void setDepartment(String department) { this.department=department; } /** * @see 存放位置 */ public String getLocation() { if(this.location==null) this.location=""; return this.location; } /** * @see 存放位置 */ public void setLocation(String location) { this.location=location; } /** * @see 状态 */ public String getBook_status() { if(this.book_status==null) this.book_status=""; return this.book_status; } /** * @see 状态 */ public void setBook_status(String book_status) { this.book_status=book_status; } /** * @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; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?