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

📄 categorizeditemdao.java

📁 网上拍卖系统
💻 JAVA
字号:
package auction.dao;import auction.model.*;/** * Business DAO operations related to the <tt>CategorizedItem</tt> entity. * <p> * This is an empty interface, currently there are no business-oriented * data access operations for this class. However, preparing the interface * means preparing ourself for future changes. That way, no refactoring is * necessary should we add methods one day. Note that with a sensible * factory, such as the <tt>HibernateDAOFactory</tt>, no concrete implementation * of this empty interface is needed, but a parameterized <tt>GenericDAO</tt> * for Hibernate can be constructed and used. * * @see auction.model.CategorizedItem * @author Christian Bauer */public interface CategorizedItemDAO        extends GenericDAO<CategorizedItem, CategorizedItem.Id> {    // Empty}

⌨️ 快捷键说明

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