sb_hotelmanager.java~60~

来自「用j2ee开发的一个旅店管理系统」· JAVA~60~ 代码 · 共 29 行

JAVA~60~
29
字号
package com.xc.hotelmanager.hotel.control.session;import javax.ejb.*;import java.util.*;import java.rmi.*;import com.xc.hotelmanager.hotel.exception.*;import com.xc.hotelmanager.hotel.model.*;public interface SB_hotelmanager extends javax.ejb.EJBObject {  public int FindEmptyRoom(String type) throws HotelManagerException, RemoteException;  public String  ResRoom(Reservation res, int num, String type) throws HotelManagerException, RemoteException;  public Collection getAllRoom() throws HotelManagerException, RemoteException;  public String getRoomtype(String id) throws HotelManagerException, RemoteException;  public void CancleRes(String id) throws HotelManagerException, RemoteException;  public Collection getAllRoomType() throws HotelManagerException, RemoteException;  public Collection SearchRes(String str) throws HotelManagerException, RemoteException;  public Collection getAllRes() throws HotelManagerException, RemoteException;  public int getRoomprice(String id) throws HotelManagerException, RemoteException;  public RoomType addRmtype(RoomType roomtype) throws HotelManagerException, RemoteException;  public void removeRoomType(String rtypeid) throws HotelManagerException, RemoteException;  public RoomType saveRoomType(RoomType roomtype) throws HotelManagerException, RemoteException;  public Collection  getRoomByType(String type) throws HotelManagerException, RemoteException;   public RoomType loadRoomType(String rtypeid) throws HotelManagerException, RemoteException;  public void CancleResByDate(String time) throws HotelManagerException, RemoteException;  public Collection  getRoomByType1(String type) throws HotelManagerException, RemoteException;  public int getRoompriceById(String roomid) throws HotelManagerException,RemoteException;}

⌨️ 快捷键说明

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