📄 productdao.java
字号:
package omega.persistence.iface;
import java.util.List;
import omega.domain.Product;
public interface ProductDao {
public List getProductList() throws Exception;
public Product getProduct(int productid) throws Exception;
public void insertPro(Product product) throws Exception;
public void delPro(int id) throws Exception;
public Product getMaxId() throws Exception;
public void updatePro(Product product)throws Exception;
public int getCount() throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -