shop.java
来自「《JSP网站开发典型模块与实例精讲》一书光盘源码」· Java 代码 · 共 36 行
JAVA
36 行
/* * Created Thu Feb 16 22:14:46 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 'shop' table. * This class may be customized as it is never re-generated * after being created. */public class Shop extends AbstractShop implements Serializable{ /** * Simple constructor of Shop instances. */ public Shop() { } /** * Constructor of Shop instances given a simple primary key. * @param id */ public Shop(java.lang.String id) { super(id); } /* Add customized code below */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?