⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userloghome.java

📁 一个使用java 写的进销存代码 使用了ejb 等技术 是学习j2ee的好
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -