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

📄 doctorinfo.java

📁 基于java的医院门诊管理系统
💻 JAVA
字号:
/**
 * @(#)DoctorInfo.java
 *
 *
 * @author Jonathan
 * @version 1.00 2006/11/30
 */
package crqs.infobeans;

import java.io.Serializable;

public class DoctorInfo extends InfoBean implements Serializable{
	private String title;		//职称
	private String realName;	//真实姓名
	//private String doctorID;	//医生执照号码
	private String resume;		//医生简历
	private String section;

    public DoctorInfo() {
    }
   	
    
   	public void setRealName(String name){
   		this.realName = name;
   	}
   	public String getRealName(){
   		return this.realName;
   	}
   	
    public void setTitle(String title){
    	this.title = title;
    }
    public String getTitle(){
    	return title;
    }
    
    /*public void setDoctorID(String doctorID){
    	this.doctorID = doctorID;
    }
    public String getDoctorID(){
    	return doctorID;
    }*/
    
    public void setSection(String sname){
    	this.section = sname;
    }
    public String getSection(){
    	return this.section;
    }
    
    public void setResume(String resume){
    	this.resume = resume;
    }
    public String getResume(){
    	return resume;
    }
}

⌨️ 快捷键说明

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