137 lines
2.5 KiB
Java
137 lines
2.5 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmTrngFacTrngHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String startDate;
|
|
|
|
private String endDate;
|
|
|
|
private String institutionName;
|
|
|
|
private String courseName;
|
|
|
|
private String calendarName;
|
|
|
|
private String site;
|
|
|
|
private String siteName;
|
|
|
|
private String courseStatus;
|
|
|
|
private String siteId;
|
|
|
|
private String calId;
|
|
|
|
private String courseId;
|
|
|
|
private String instId;
|
|
|
|
private String venue;
|
|
|
|
public String getStartDate() {
|
|
return this.startDate;
|
|
}
|
|
|
|
public void setStartDate(String newStartDate) {
|
|
this.startDate = newStartDate;
|
|
}
|
|
|
|
public String getEndDate() {
|
|
return this.endDate;
|
|
}
|
|
|
|
public void setEndDate(String newEndDate) {
|
|
this.endDate = newEndDate;
|
|
}
|
|
|
|
public String getInstitutionName() {
|
|
return this.institutionName;
|
|
}
|
|
|
|
public void setInstitutionName(String newInstitutionName) {
|
|
this.institutionName = newInstitutionName;
|
|
}
|
|
|
|
public String getCourseName() {
|
|
return this.courseName;
|
|
}
|
|
|
|
public void setCourseName(String newCourseName) {
|
|
this.courseName = newCourseName;
|
|
}
|
|
|
|
public String getCalendarName() {
|
|
return this.calendarName;
|
|
}
|
|
|
|
public void setCalendarName(String newCalendarName) {
|
|
this.calendarName = newCalendarName;
|
|
}
|
|
|
|
public String getSite() {
|
|
return this.site;
|
|
}
|
|
|
|
public void setSite(String newSite) {
|
|
this.site = newSite;
|
|
}
|
|
|
|
public String getSiteName() {
|
|
return this.siteName;
|
|
}
|
|
|
|
public void setSiteName(String newSiteName) {
|
|
this.siteName = newSiteName;
|
|
}
|
|
|
|
public String getCourseStatus() {
|
|
return this.courseStatus;
|
|
}
|
|
|
|
public void setCourseStatus(String newCourseStatus) {
|
|
this.courseStatus = newCourseStatus;
|
|
}
|
|
|
|
public String getSiteId() {
|
|
return this.siteId;
|
|
}
|
|
|
|
public void setSiteId(String newSiteId) {
|
|
this.siteId = newSiteId;
|
|
}
|
|
|
|
public String getCalId() {
|
|
return this.calId;
|
|
}
|
|
|
|
public void setCalId(String newCalId) {
|
|
this.calId = newCalId;
|
|
}
|
|
|
|
public String getCourseId() {
|
|
return this.courseId;
|
|
}
|
|
|
|
public void setCourseId(String newCourseId) {
|
|
this.courseId = newCourseId;
|
|
}
|
|
|
|
public String getInstId() {
|
|
return this.instId;
|
|
}
|
|
|
|
public void setInstId(String newInstId) {
|
|
this.instId = newInstId;
|
|
}
|
|
|
|
public String getVenue() {
|
|
return this.venue;
|
|
}
|
|
|
|
public void setVenue(String newVenue) {
|
|
this.venue = newVenue;
|
|
}
|
|
}
|