📄 goodshome.java
字号:
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 findDiscountGoods() throws FinderException;
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 + -