iuserorderdao.java
来自「《JSP网站开发典型模块与实例精讲》一书光盘源码」· Java 代码 · 共 30 行
JAVA
30 行
package book.example.photoprint.dao;
import java.util.List;
import net.sf.hibernate.HibernateException;
import book.example.photoprint.exception.DBException;
import book.example.photoprint.po.User;
import book.example.photoprint.po.Userorder;
public interface IUserorderDAO {
public void addUserorder(Userorder userorder) throws DBException;
public void updateUserorder(Userorder userorder) throws DBException;
public void deleteUserorder(String userorderid) throws DBException;
public Userorder getUserorder(String userorderid) throws DBException;
public List getOrderListByShopId(String shopId) throws DBException;
public List getOrderList() throws DBException;
public List getOrderListByUserId(User user) throws DBException;
public List getOrderListByAlbumId(String albumid) throws DBException ;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?