productbasicinforemotehome.java~4~

来自「这也是师兄的毕业设计,具体的功能我也不清楚,因为我才大一,请见谅!!!!!!!不」· JAVA~4~ 代码 · 共 14 行

JAVA~4~
14
字号
package product;import javax.ejb.*;import java.util.*;import java.rmi.*;public interface productBasicInfoRemoteHome extends javax.ejb.EJBHome {  public productBasicInfoRemote create(String p_id, String p_type_id, String p_name, String p_spec, String p_model, String p_unit, String p_image, String p_remark) throws CreateException, RemoteException;  public Collection findByType(String type_id) throws FinderException, RemoteException;  public Collection findByName(String name) throws FinderException, RemoteException;  public productBasicInfoRemote findByName_Model(String name, String model) throws FinderException, RemoteException;  public productBasicInfoRemote findByType_Name_Spece(String type, String name, String spece) throws FinderException, RemoteException;  public productBasicInfoRemote findByPrimaryKey(productBasicInfoPK pk) throws FinderException, RemoteException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?