📄 gouwucheinfohome.java~18~
字号:
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 GouWuCheInfo findMethod1() throws FinderException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -