📄 gouwuchesession.java
字号:
package ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.List;
public interface GouWuCheSession extends EJBObject {
public boolean inster(String userCode, String number, String name,
String model, float price, String count1) throws RemoteException;
public boolean delete(String dingDanHao) throws RemoteException;
public boolean xiugai(String dingDanHao, String userCode, String number,
String name, String model, float price, String count1,
String zhiFu) throws RemoteException;
public boolean querenzhifu(String dingDanHao) throws RemoteException;
public List selectAll() throws RemoteException;
public List selectForUserCode(String code) throws RemoteException;
public List selectForZhiFu() throws RemoteException;
public List selectForDingDanHao(String dingDanHao) throws
RemoteException;
public List selectForZhiFuORCode(String userCode) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -