97 lines
1.8 KiB
Java
97 lines
1.8 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmTrngEmpHistHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String calendarName;
|
|
|
|
private String course;
|
|
|
|
private String institutionName;
|
|
|
|
private String fromDate;
|
|
|
|
private String toDate;
|
|
|
|
private String empNo;
|
|
|
|
private String calId;
|
|
|
|
private String empNoId;
|
|
|
|
private String calDtlId;
|
|
|
|
public String getCalendarName() {
|
|
return this.calendarName;
|
|
}
|
|
|
|
public void setCalendarName(String newCalendarName) {
|
|
this.calendarName = newCalendarName;
|
|
}
|
|
|
|
public String getCourse() {
|
|
return this.course;
|
|
}
|
|
|
|
public void setCourse(String newCourse) {
|
|
this.course = newCourse;
|
|
}
|
|
|
|
public String getInstitutionName() {
|
|
return this.institutionName;
|
|
}
|
|
|
|
public void setInstitutionName(String newInstitutionName) {
|
|
this.institutionName = newInstitutionName;
|
|
}
|
|
|
|
public String getFromDate() {
|
|
return this.fromDate;
|
|
}
|
|
|
|
public void setFromDate(String newFromDate) {
|
|
this.fromDate = newFromDate;
|
|
}
|
|
|
|
public String getToDate() {
|
|
return this.toDate;
|
|
}
|
|
|
|
public void setToDate(String newToDate) {
|
|
this.toDate = newToDate;
|
|
}
|
|
|
|
public String getEmpNo() {
|
|
return this.empNo;
|
|
}
|
|
|
|
public void setEmpNo(String newEmpNo) {
|
|
this.empNo = newEmpNo;
|
|
}
|
|
|
|
public String getCalId() {
|
|
return this.calId;
|
|
}
|
|
|
|
public void setCalId(String newCalId) {
|
|
this.calId = newCalId;
|
|
}
|
|
|
|
public String getEmpNoId() {
|
|
return this.empNoId;
|
|
}
|
|
|
|
public void setEmpNoId(String newEmpNoId) {
|
|
this.empNoId = newEmpNoId;
|
|
}
|
|
|
|
public String getCalDtlId() {
|
|
return this.calDtlId;
|
|
}
|
|
|
|
public void setCalDtlId(String newCalDtlId) {
|
|
this.calDtlId = newCalDtlId;
|
|
}
|
|
}
|