📄 productoracledao.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.shopping.dao;import com.shopping.model.Product;import java.util.Date;import java.util.List;/** * * @author ruirui */public class ProductOracleDAO implements ProductDAO{ public ProductOracleDAO() { } public List<Product> getProducts() { throw new UnsupportedOperationException("Not supported yet."); } public List<Product> getProducts(int pageNo, int pageSize) { throw new UnsupportedOperationException("Not supported yet."); } public List<Product> searchProduts(int[] categoryId, String name, String descr, double lowNoremalPrice, double highNoremalPrice, double lowMemberPrice, double highMemberPrice, Date startDate, Date endDate, int pageNo, int pageSize) { throw new UnsupportedOperationException("Not supported yet."); } public boolean deleteProductByCategoryId(int id) { throw new UnsupportedOperationException("Not supported yet."); } public boolean deleteProductByCategoryId(int[] idArray) { throw new UnsupportedOperationException("Not supported yet."); } public boolean updateProduct(Product p) { throw new UnsupportedOperationException("Not supported yet."); } public boolean addProduct(Product p) { throw new UnsupportedOperationException("Not supported yet."); } public int getProducts(List list, int pageNo, int pageSize) { throw new UnsupportedOperationException("Not supported yet."); } public List<Product> searchProduts(int categoryId, String keyword) { throw new UnsupportedOperationException("Not supported yet."); } public List<Product> searchProduts(int categoryId, String keyword, double lowNormalPrice, double highNormalPrice) { throw new UnsupportedOperationException("Not supported yet."); } public Product loadById(int id) { throw new UnsupportedOperationException("Not supported yet."); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -