📄 qualification.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -