chequingaccountlocalhome.java
来自「我在加拿大学习的一个比较复杂的在线银行程序.」· Java 代码 · 共 35 行
JAVA
35 行
package com.ebusiness.ebank.ejb.entitybean;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: eBusiness Inc., All right reserved</p> * @author unascribed * @version 1.0 */import java.util.Collection;import javax.ejb.CreateException;import javax.ejb.FinderException;import javax.ejb.EJBLocalHome;import com.ebusiness.ebank.bean.ChequingAccountValue;import com.ebusiness.ebank.exception.SystemException;import com.ebusiness.ebank.exception.BusinessException;public interface ChequingAccountLocalHome extends EJBLocalHome{ ChequingAccountLocal create(ChequingAccountValue value) throws CreateException, SystemException, BusinessException; ChequingAccountLocal findByPrimaryKey(Object oid) throws FinderException; ChequingAccountLocal findByAccountNo(String accountNo) throws FinderException; ChequingAccountLocal findByClientCardID(String cardID) throws FinderException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?