⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 doctor.java

📁 BEA WebLogic Server 8.1大全 = BEA webLogic server 8.1 unleashed (美) Mark Artiges等著 袁毅 ... [等] 译 eng
💻 JAVA
字号:
package wlsunleashed.ejb.entity.bmp;

import java.rmi.RemoteException;
import javax.ejb.EJBObject;

public interface Doctor extends EJBObject {
	public Integer getId() throws RemoteException;
	public String getFirstName() throws RemoteException;
	public void setFirstName(String firstName) throws RemoteException;
	public String getLastName() throws RemoteException;
	public void setLastName(String lastName) throws RemoteException;
	public String getSpecialty() throws RemoteException;
	public void setSpecialty(String specialty) throws RemoteException;
	public DoctorVO getDoctorData() throws RemoteException;
  	public void setDoctorData(DoctorVO doctorVO) throws RemoteException;
}

⌨️ 快捷键说明

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