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

📄 book.java

📁 网上书店源码。功能全面
💻 JAVA
字号:
/* * Created Thu Sep 01 14:30:18 CST 2005 by MyEclipse Hibernate Tool. */ package com.ascent.bean;import java.io.Serializable;/** * A class that represents a row in the 'book' table.  * This class may be customized as it is never re-generated  * after being created. */public class Book    extends AbstractBook    implements Serializable{    /**     * Simple constructor of Book instances.     */    public Book()    {    }    /**     * Constructor of Book instances given a simple primary key.     * @param bookId     */    public Book(java.lang.Integer bookId)    {        super(bookId);    }    /* Add customized code below */}

⌨️ 快捷键说明

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