qualification.java
来自「一个小型的医疗管理系统」· Java 代码 · 共 32 行
JAVA
32 行
package bean;
public class Qualification {
private int staffId;
private String type;
private String date;
private String institution;
public Qualification(int staffId, String type, String date, String institution){
this.staffId = staffId;
this.type = type;
this.date = date;
this.institution = institution;
}
public int getStaffId(){
return this.staffId ;
}
public String getType(){
return this.type ;
}
public String getDate(){
return this.date ;
}
public String getInstitution(){
return this.institution ;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?