⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 book.java

📁 在线读书交流平台
💻 JAVA
字号:
package com.olr.beans;

import java.util.Date;

/**
 * Book entity.
 * 
 * @author MyEclipse Persistence Tools
 */
public class Book extends AbstractBook implements java.io.Serializable {

	// Constructors

	/** default constructor */
	public Book() {
	}



	/** minimal constructor */
	public Book(String bookname, String writer, Integer status, Integer price,
			Integer chapterCount) {
		super(bookname, writer, status, price, chapterCount);
	}

	/** full constructor */
	public Book(String bookname, String writer, Integer userId, Integer status,
			Integer price, String category, Integer clickCount,
			Integer recomCount, Date updateTime, Integer wordCount,
			String lastChapter, Integer chapterCount, String imagePath,
			String discription, String notice, String label) {
		super(bookname, writer, userId, status, price, category, clickCount,
				recomCount, updateTime, wordCount, lastChapter, chapterCount,
				imagePath, discription, notice, label);
	}
}

⌨️ 快捷键说明

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