goods1home.java~1~
来自「EJB做的工业进销存系统 EJB做的工业进销存系统」· JAVA~1~ 代码 · 共 13 行
JAVA~1~
13 行
package stockmanagementpro;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 + =
减小字号Ctrl + -
显示快捷键?