serviceproduct.java~12~
来自「一个很不错的电子商务后台管理系统 这是一个电子商务网站的后台管理系统 要」· JAVA~12~ 代码 · 共 14 行
JAVA~12~
14 行
package xian.bin.serivce;import java.util.*;import xian.bin.dto.ProductDTO;public interface ServiceProduct { public void addProduct(String pid,String pname, String brand, String spec, String unit, float price, float assprice, String pictrue, String explain, String bigcatalog, String smaillcatalog)throws Exception; public Collection getAllProduct()throws Exception; public void delProduct(String pid)throws Exception; public ProductDTO getProduct(String pname)throws Exception; public void updateProduct(String pid,String pname, String brand, String spec, String unit, float price, float assprice, String pictrue, String explain, String bigcatalog, String smaillcatalog)throws Exception; public ArrayList getBigCatalog()throws Exception; public ArrayList getSmaillCatalog()throws Exception; public ArrayList getBrand()throws Exception;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?