?? quickbooking.java
字號:
package com.zklee.test.quickcarrental;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.Date;
public interface QuickBooking extends EJBObject {
/**
* Business Method.
*/
public String getBookingId() throws RemoteException;
/**
* Business Method.
*/
public void setBookingId(String bookingId) throws RemoteException;
/**
* Business Method.
*/
public String getVehicleTypeId() throws RemoteException;
/**
* Business Method.
*/
public void setVehicleTypeId(String vehicleTypeId) throws RemoteException;
/**
* Business Method.
*/
public Date getDateTo() throws RemoteException;
/**
* Business Method.
*/
public void setDateTo(Date dateTo) throws RemoteException;
/**
* Business Method.
*/
public Date getDateFrom() throws RemoteException;
/**
* Business Method.
*/
public void setDateFrom(Date dateFrom) throws RemoteException;
/**
* Business Method.
*/
public String getDropoffLocation() throws RemoteException;
/**
* Business Method.
*/
public void setDropoffLocation(String dropoffLocation)
throws RemoteException;
/**
* Business Method.
*/
public Date getReservationDate() throws RemoteException;
/**
* Business Method.
*/
public void setReservationDate(Date reservationDate)
throws RemoteException;
/**
* Business Method.
*/
public String getPickupLocation() throws RemoteException;
/**
* Business Method.
*/
public void setPickupLocation(String pickupLocation)
throws RemoteException;
/**
* Business Method.
*/
public String getStatus() throws RemoteException;
/**
* Business Method.
*/
public void setStatus(String status) throws RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -