📄 customerhome.java
字号:
package stockmanagementpro;
import javax.ejb.*;
import java.util.*;
public interface CustomerHome extends javax.ejb.EJBLocalHome {
public Customer create(String customerName, String customerZone, String pyCode, String abbreviation, String companyPhone, String linkman, String mobilePhone, String fax, String fixedPhone, String address, String zipCode, String bankName, String bankAccount, String email, String homesite, double creditlimit, String remark) throws CreateException;
public Collection findByCustomerName(String customerName) throws FinderException;
public Collection findByCustomerZone(String customerZone) throws FinderException; public Collection findCreditCustomer() throws FinderException; public Customer findByPrimaryKey(String customerName) throws FinderException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -