gouwuchesession.java~26~

来自「一个使用EJB开发的真实项目」· JAVA~26~ 代码 · 共 25 行

JAVA~26~
25
字号
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) 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;

}

⌨️ 快捷键说明

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