abstract医生表.java

来自「医院信息系统(Hospital Information System」· Java 代码 · 共 84 行

JAVA
84
字号
package hospital.Model;



/**
 * Abstract医生表 generated by MyEclipse - Hibernate Tools
 */

public abstract class Abstract医生表  implements java.io.Serializable {


    // Fields    

     private String 医生编号;
     private 科室表 科室表;
     private String 姓名;
     private String 职称;


    // Constructors

    /** default constructor */
    public Abstract医生表() {
    }

	/** minimal constructor */
    public Abstract医生表(String 医生编号, 科室表 科室表, String 姓名) {
        this.医生编号 = 医生编号;
        this.科室表 = 科室表;
        this.姓名 = 姓名;
    }
    
    /** full constructor */
    public Abstract医生表(String 医生编号, 科室表 科室表, String 姓名, String 职称) {
        this.医生编号 = 医生编号;
        this.科室表 = 科室表;
        this.姓名 = 姓名;
        this.职称 = 职称;
    }

   
    // Property accessors

    public String get医生编号() {
        return this.医生编号;
    }
    
    public void set医生编号(String 医生编号) {
        this.医生编号 = 医生编号;
    }

    public 科室表 get科室表() {
        return this.科室表;
    }
    
    public void set科室表(科室表 科室表) {
        this.科室表 = 科室表;
    }

    public String get姓名() {
        return this.姓名;
    }
    
    public void set姓名(String 姓名) {
        this.姓名 = 姓名;
    }

    public String get职称() {
        return this.职称;
    }
    
    public void set职称(String 职称) {
        this.职称 = 职称;
    }
   








}

⌨️ 快捷键说明

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