userloghome.java

来自「一个使用java 写的进销存代码 使用了ejb 等技术 是学习j2ee的好」· Java 代码 · 共 15 行

JAVA
15
字号
package stockmanagementpro;import javax.ejb.*;import java.util.*;import java.sql.*;public interface UserLogHome extends javax.ejb.EJBLocalHome {  public UserLog create(Integer id, String programName, String operationContent, String userName, Timestamp operationDate) throws CreateException;  public Collection findAll() throws FinderException;  public Collection findByProgramName(String programName) throws FinderException;  public Collection findByOperationContent(String operationContent) throws FinderException;  public Collection findByUserName(String userName) throws FinderException;  public Collection findByOperationDate(Timestamp startDate, Timestamp endDate) throws FinderException;  public UserLog findByPrimaryKey(Integer id) throws FinderException;}

⌨️ 快捷键说明

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