shoujisession.java~16~

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

JAVA~16~
26
字号
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 number, 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;
}

⌨️ 快捷键说明

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