ordersdao.java

来自「STRUTS数据库项目开发宝典」· Java 代码 · 共 38 行

JAVA
38
字号
package com.relationinfo.dao;import java.util.List;import com.relationinfo.model.Orders;public interface OrdersDAO extends DAO {    /**     * Retrieves all of the orderss     */    public List getOrderss(Orders orders);    /**     * Gets orders's information based on primary key. An     * ObjectRetrievalFailureException Runtime Exception is thrown if      * nothing is found.     *      * @param orderid the orders's orderid     * @return orders populated orders object     */    public Orders getOrders(final String orderid);    /**     * Saves a orders's information     * @param orders the object to be saved     */	    public void saveOrders(Orders orders);	/**     * Removes a orders from the database by orderid     * @param orderid the orders's orderid     */    public void removeOrders(final String orderid);}

⌨️ 快捷键说明

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