shipmentdao.java
来自「网上拍卖系统」· Java 代码 · 共 22 行
JAVA
22 行
package auction.dao;import auction.model.*;/** * Business DAO operations related to the <tt>Shipment</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.Comment * @author Christian Bauer */public interface ShipmentDAO extends GenericDAO<Shipment, Long> { // Empty}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?