📄 itemdao.java
字号:
/**
* User: Clinton Begin
* Date: Jul 13, 2003
* Time: 8:18:30 PM
*/
package com.jdon.framework.samples.jpetstore.persistence.dao.iface;
import java.sql.SQLException;
import java.util.List;
import com.jdon.framework.samples.jpetstore.domain.Item;
import com.jdon.framework.samples.jpetstore.domain.Order;
public interface ItemDao {
public void updateQuantity(Order order) throws SQLException;
boolean isItemInStock(String itemId) throws SQLException;
List getItemIDsListByProduct(String productId, int start, int pagessize) throws SQLException;
int getItemIDsListByProductCount(String productId) throws SQLException;
Item getItem(String itemId) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -