⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goodshome.java~15~

📁 一个使用java 写的进销存代码 使用了ejb 等技术 是学习j2ee的好
💻 JAVA~15~
字号:
package baseinforinterface;import javax.ejb.*;import java.util.*;public interface GoodsHome extends javax.ejb.EJBLocalHome {  public Goods create(String goodsBarCode, int categoryId, String goodsName, String goodsNickName, String goodsAssistantName, String goodsPYName, String unit, String specification, String producer, int upperLimit, int lowerLimit, double salePrice, double discount) throws CreateException;  public Collection findByGoodsCategory(int categoryId) throws FinderException;  public Collection findByGoodsBarCode(String goodsBarCode) throws FinderException;  public Collection findByGoodsName(String goodsName) throws FinderException;  public Collection findByProducer(String producer) throws FinderException;  public Goods findByPrimaryKey(String goodsBarCode) throws FinderException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -