price.java

来自「《JSP网站开发典型模块与实例精讲》一书光盘源码」· Java 代码 · 共 36 行

JAVA
36
字号
/* * Created Sun Jan 29 11:48:51 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 'price' table.  * This class may be customized as it is never re-generated  * after being created. */public class Price    extends AbstractPrice    implements Serializable{    /**     * Simple constructor of Price instances.     */    public Price()    {    }    /**     * Constructor of Price instances given a simple primary key.     * @param id     */    public Price(java.lang.String id)    {        super(id);    }    /* Add customized code below */}

⌨️ 快捷键说明

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