productproxy.java
来自「一个常用的电子商城的站点源码」· Java 代码 · 共 43 行
JAVA
43 行
package com.publish.shop.product.javabeans;import java.sql.Connection;import java.util.ArrayList;import com.publish.shop.util.javabeans.*;import com.publish.shop.product.dao.ProductDAO;public class ProductProxy { ProductDAO dao = null; public ProductProxy(){ dao = new ProductDAO(); } public ProductModel queryProductByProductName(String productName) throws Exception{ return dao.queryProductByProductName(productName); } public ArrayList queryProduct(ProductModel model,Pager pager) throws Exception{ ArrayList lList = new ArrayList(); lList = dao.query(model); return Utility.generatePager(lList,pager); } public ArrayList queryProduct(ProductModel model) throws Exception{ return dao.query(model); } public ProductModel queryProduct(String productId) throws Exception{ return dao.queryProduct(productId); } public void insertProduct(ProductModel model) throws Exception{ dao.insert(model); } public void updateProduct(ProductModel model) throws Exception{ dao.update(model); } public void deleteProduct(String productId) throws Exception{ dao.delete(productId); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?