📄 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 + -