gouwuchesession.java

来自「一个使用EJB开发的真实项目」· Java 代码 · 共 31 行

JAVA
31
字号
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 + =
减小字号Ctrl + -
显示快捷键?