📄 shoujisession.java~20~
字号:
package ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.List;
public interface ShouJiSession extends EJBObject {
public boolean inster(String photo, String name, String model,
String daXiao, String yanSe, String zhongLiang,
String xiangXiJieShao, float price) throws
RemoteException;
public boolean xiugai(String photo, String number, String name,
String model, String daXiao, String yanSe,
String zhongLiang, String xiangXiJieShao, float price) throws
RemoteException;
public boolean delete(String number) throws RemoteException;
public List selectAll() throws RemoteException;
public List selectForName(String name) throws RemoteException;
public List selectForPrice(float price) throws RemoteException;
public List selectForNumber(String number) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -