📄 ordersdao.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -