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

📄 gouwucheinfohome.java~14~

📁 一个使用EJB开发的真实项目
💻 JAVA~14~
字号:
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 GouWuCheInfo findForDingDanHao(String dingDanHao) throws FinderException;

}

⌨️ 快捷键说明

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