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

📄 album.java

📁 《JSP网站开发典型模块与实例精讲》一书光盘源码
💻 JAVA
字号:
/* * Created Sun Jan 29 11:49:11 GMT-08:00 2006 by MyEclipse Hibernate Tool. */ package book.example.photoprint.po;import java.io.Serializable;/** * A class that represents a row in the 'album' table.  * This class may be customized as it is never re-generated  * after being created. */public class Album    extends AbstractAlbum    implements Serializable{    /**     * Simple constructor of Album instances.     */    public Album()    {    }    /**     * Constructor of Album instances given a simple primary key.     * @param id     */    public Album(java.lang.String id)    {        super(id);    }    /* Add customized code below */}

⌨️ 快捷键说明

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