?? userloghome.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 + -