Book.java
上传用户:ouhalaa
上传日期:2016-03-17
资源大小:10210k
文件大小:5k
源码类别:

Web服务器

开发平台:

Java

  1. package com.lhq.prj.bms.po;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5.  * Book.java Create on 2008-9-22 下午08:48:34
  6.  * 
  7.  * 图书
  8.  * 
  9.  * Copyright (c) 2008 by MTA.
  10.  * 
  11.  * @author 廖瀚卿
  12.  * @version 1.0
  13.  */
  14. @SuppressWarnings("serial")
  15. public class Book implements Serializable {
  16. private Integer bookId;
  17. /** 书名 */
  18. private String bookName;
  19. /** 作者 */
  20. private String author;
  21. /** 出版社 */
  22. private String press;
  23. /** 出版时间 */
  24. private Date publicationDate;
  25. /** 定价 */
  26. private String price;
  27. /** 版次 */
  28. private String editionNo;
  29. /** ISBN */
  30. private String isbn;
  31. /** 所属分类 */
  32. private Integer categoryId;
  33. /** 所属分类名称 */
  34. private String categoryName;
  35. /** 字数 */
  36. private String wordCount;
  37. /** 页数 */
  38. private String pageCount;
  39. /** 开本 */
  40. private String bookSize;
  41. /** 纸张 */
  42. private String paper;
  43. /** 包装 */
  44. private String pack;
  45. /** 封面 */
  46. private String imageUrl;
  47. /** 藏书地址 */
  48. private String address;
  49. /** 编辑推荐 */
  50. private String editorRecommend;
  51. /** 内容简介 */
  52. private String description;
  53. /** 作者简介 */
  54. private String authorDesc;
  55. /** 当前状态 */
  56. private Integer state;
  57. /** 当前借阅人id */
  58. private Integer currentReaderId;
  59. /** 当前借阅人姓名 */
  60. private String currentReader;
  61. /** 当前关联的借阅记录id */
  62. private Integer logId;
  63. public Book() {
  64. }
  65. public Book(Integer bookId) {
  66. this.bookId = bookId;
  67. }
  68. public String getAddress() {
  69. return address;
  70. }
  71. public void setAddress(String address) {
  72. this.address = address;
  73. }
  74. public String getAuthor() {
  75. return author;
  76. }
  77. public void setAuthor(String author) {
  78. this.author = author;
  79. }
  80. public Integer getBookId() {
  81. return bookId;
  82. }
  83. public void setBookId(Integer bookId) {
  84. this.bookId = bookId;
  85. }
  86. public String getBookName() {
  87. return bookName;
  88. }
  89. public void setBookName(String bookName) {
  90. this.bookName = bookName;
  91. }
  92. public String getBookSize() {
  93. return bookSize;
  94. }
  95. public void setBookSize(String bookSize) {
  96. this.bookSize = bookSize;
  97. }
  98. public Integer getCategoryId() {
  99. return categoryId;
  100. }
  101. public void setCategoryId(Integer categoryId) {
  102. this.categoryId = categoryId;
  103. }
  104. public String getCategoryName() {
  105. return categoryName;
  106. }
  107. public void setCategoryName(String categoryName) {
  108. this.categoryName = categoryName;
  109. }
  110. public String getEditionNo() {
  111. return editionNo;
  112. }
  113. public void setEditionNo(String editionNo) {
  114. this.editionNo = editionNo;
  115. }
  116. public String getIsbn() {
  117. return isbn;
  118. }
  119. public void setIsbn(String isbn) {
  120. this.isbn = isbn;
  121. }
  122. public String getPack() {
  123. return pack;
  124. }
  125. public void setPack(String pack) {
  126. this.pack = pack;
  127. }
  128. public String getPaper() {
  129. return paper;
  130. }
  131. public void setPaper(String paper) {
  132. this.paper = paper;
  133. }
  134. public String getPress() {
  135. return press;
  136. }
  137. public void setPress(String press) {
  138. this.press = press;
  139. }
  140. public String getPrice() {
  141. return price;
  142. }
  143. public void setPrice(String price) {
  144. this.price = price;
  145. }
  146. public Date getPublicationDate() {
  147. return publicationDate;
  148. }
  149. public void setPublicationDate(Date publicationDate) {
  150. this.publicationDate = publicationDate;
  151. }
  152. public Integer getState() {
  153. return state;
  154. }
  155. public void setState(Integer state) {
  156. this.state = state;
  157. }
  158. public String getPageCount() {
  159. return pageCount;
  160. }
  161. public void setPageCount(String pageCount) {
  162. this.pageCount = pageCount;
  163. }
  164. public String getWordCount() {
  165. return wordCount;
  166. }
  167. public void setWordCount(String wordCount) {
  168. this.wordCount = wordCount;
  169. }
  170. public String getDescription() {
  171. return description;
  172. }
  173. public void setDescription(String description) {
  174. this.description = description;
  175. }
  176. public String getEditorRecommend() {
  177. return editorRecommend;
  178. }
  179. public void setEditorRecommend(String editorRecommend) {
  180. this.editorRecommend = editorRecommend;
  181. }
  182. public String getAuthorDesc() {
  183. return authorDesc;
  184. }
  185. public void setAuthorDesc(String authorDesc) {
  186. this.authorDesc = authorDesc;
  187. }
  188. public String getImageUrl() {
  189. return imageUrl;
  190. }
  191. public void setImageUrl(String imageUrl) {
  192. this.imageUrl = imageUrl;
  193. }
  194. public Integer getLogId() {
  195. return logId;
  196. }
  197. public void setLogId(Integer currentLogId) {
  198. this.logId = currentLogId;
  199. }
  200. public String getCurrentReader() {
  201. return currentReader;
  202. }
  203. public void setCurrentReader(String currentReader) {
  204. this.currentReader = currentReader;
  205. }
  206. public Integer getCurrentReaderId() {
  207. return currentReaderId;
  208. }
  209. public void setCurrentReaderId(Integer currentReaderId) {
  210. this.currentReaderId = currentReaderId;
  211. }
  212. }