userloghome.java~16~
来自「JAVA实现进存销 JAVA实现进存销」· JAVA~16~ 代码 · 共 13 行
JAVA~16~
13 行
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 UserLog findByPrimaryKey(Integer id) throws FinderException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?