📄 ordersdao.java
字号:
package omega.persistence.iface;
import omega.domain.*;
import java.util.List;
public interface OrdersDao {
public List selectAllUser() throws Exception;
public void insertOrders(Orders orders) throws Exception;
public Orders selectMaxId() throws Exception;
public void deleteOrdersById(String orderId) throws Exception;
public Orders getMaxId() throws Exception;
public int getCount() throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -