fundaccounthome.java
来自「EJB+Struts+Webservice实现的开放式基金管理系统」· Java 代码 · 共 48 行
JAVA
48 行
package com.fund.client;
import javax.ejb.EJBLocalHome;
import javax.ejb.CreateException;
import javax.ejb.FinderException;
import java.util.Collection;
/**
*
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public interface FundAccountHome extends EJBLocalHome {
/**
*
* @param fundAccNo Integer
* @return FundAccount
* @throws CreateException e
*/
public FundAccount create(Integer fundAccNo) throws CreateException;
/**
*
* @param fundAccNo Integer
* @return FundAccount
* @throws FinderException e
*/
public FundAccount findByPrimaryKey(Integer fundAccNo) throws
FinderException;
/**
*
* @param fundAccNo Integer
* @return Collection
* @throws FinderException e
*/
public Collection findByFinancialAccNo(Integer fundAccNo) throws
FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?