📄 orderlocalhome.java
字号:
package day21ex.order;
import javax.ejb.*;
import java.util.*;
import day21ex.student.*;
public interface OrderLocalHome extends EJBLocalHome {
public OrderLocal create(String orderID, StudentLocal student, Collection courseItems) throws CreateException;
public OrderLocal create(String orderID, String studentId, Collection courseItems) throws CreateException;
public OrderLocal create(String orderID, String studentid, String status, double amount) throws CreateException;
public OrderLocal create(String orderID, StudentLocal student,String status, double amount) throws CreateException;
public OrderLocal findByPrimaryKey(String key) throws FinderException;
public Collection findByStudent(StudentLocal student) throws FinderException;
public Collection findByDate(java.sql.Timestamp date) throws FinderException;
public Collection findByStatus(String status) throws FinderException;
public Collection findAllOrders() throws FinderException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -