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