gouwucheinfohome.java

来自「一个使用EJB开发的真实项目」· Java 代码 · 共 25 行

JAVA
25
字号
package ejb;

import javax.ejb.EJBLocalHome;
import javax.ejb.CreateException;
import javax.ejb.FinderException;
import java.util.Collection;

public interface GouWuCheInfoHome extends EJBLocalHome {
    public GouWuCheInfo create(String dingDanHao) throws CreateException;

    public GouWuCheInfo findByPrimaryKey(String dingDanHao) throws
            FinderException;

    public Collection  findAll() throws FinderException;

    public Collection findForUserCode(String userCode) throws FinderException;

    public Collection  findForZhiFu() throws FinderException;

    public Collection findForDingDanHao(String dingDanHao) throws FinderException;

    public Collection  findForZhiFuORCode(String userCode) throws FinderException;

}

⌨️ 快捷键说明

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