
com.hdw.erp.common.dto.hr.PersonnelAptitudeDto Maven / Gradle / Ivy
package com.hdw.erp.common.dto.hr;
import java.util.List;
import com.hdw.erp.common.dto.ERPBaseDto;
public class PersonnelAptitudeDto extends ERPBaseDto {
private Long id;
private Long personnelRecordId;
// รายการประวัติการศึกษา
private List educationList;
// รายการความสามารถด้านภาษา
private List languageSkillsList;
// รายการความสามารถทางวิชาชีพ / ทั่วไป
private List professionalSkillsList;
public List getEducationList() {
return educationList;
}
public void setEducationList(List educationList) {
this.educationList = educationList;
}
public List getLanguageSkillsList() {
return languageSkillsList;
}
public void setLanguageSkillsList(List languageSkillsList) {
this.languageSkillsList = languageSkillsList;
}
public List getProfessionalSkillsList() {
return professionalSkillsList;
}
public void setProfessionalSkillsList(List professionalSkillsList) {
this.professionalSkillsList = professionalSkillsList;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getPersonnelRecordId() {
return personnelRecordId;
}
public void setPersonnelRecordId(Long personnelRecordId) {
this.personnelRecordId = personnelRecordId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy