book.java
来自「在线图书管理系统,所有框架struts2,hibernate,spring 希望」· Java 代码 · 共 36 行
JAVA
36 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?