147 lines
3.6 KiB
Java
147 lines
3.6 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmTrngEmpHistDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtEmployeeNo;
|
|
|
|
private String txtName;
|
|
|
|
private String txtParticipation;
|
|
|
|
private String txtReasonForNonParticipation;
|
|
|
|
private String txtRating;
|
|
|
|
private String txtTrainingAttendanceDetail;
|
|
|
|
private String empId;
|
|
|
|
private String calId;
|
|
|
|
private String disabtxtEmployeeNo;
|
|
|
|
private String disabtxtName;
|
|
|
|
private String disabtxtParticipation;
|
|
|
|
private String disabtxtReasonForNonParticipation;
|
|
|
|
private String disabtxtRating;
|
|
|
|
private String disabtxtTrainingAttendanceDetail;
|
|
|
|
public String getTxtEmployeeNo() {
|
|
return this.txtEmployeeNo;
|
|
}
|
|
|
|
public void setTxtEmployeeNo(String newTxtEmployeeNo) {
|
|
this.txtEmployeeNo = newTxtEmployeeNo;
|
|
}
|
|
|
|
public String getTxtName() {
|
|
return this.txtName;
|
|
}
|
|
|
|
public void setTxtName(String newTxtName) {
|
|
this.txtName = newTxtName;
|
|
}
|
|
|
|
public String getTxtParticipation() {
|
|
return this.txtParticipation;
|
|
}
|
|
|
|
public void setTxtParticipation(String newTxtParticipation) {
|
|
this.txtParticipation = newTxtParticipation;
|
|
}
|
|
|
|
public String getTxtReasonForNonParticipation() {
|
|
return this.txtReasonForNonParticipation;
|
|
}
|
|
|
|
public void setTxtReasonForNonParticipation(String newTxtReasonForNonParticipation) {
|
|
this.txtReasonForNonParticipation = newTxtReasonForNonParticipation;
|
|
}
|
|
|
|
public String getTxtRating() {
|
|
return this.txtRating;
|
|
}
|
|
|
|
public void setTxtRating(String newTxtRating) {
|
|
this.txtRating = newTxtRating;
|
|
}
|
|
|
|
public String getTxtTrainingAttendanceDetail() {
|
|
return this.txtTrainingAttendanceDetail;
|
|
}
|
|
|
|
public void setTxtTrainingAttendanceDetail(String newTxtTrainingAttendanceDetail) {
|
|
this.txtTrainingAttendanceDetail = newTxtTrainingAttendanceDetail;
|
|
}
|
|
|
|
public String getEmpId() {
|
|
return this.empId;
|
|
}
|
|
|
|
public void setEmpId(String newEmpId) {
|
|
this.empId = newEmpId;
|
|
}
|
|
|
|
public String getCalId() {
|
|
return this.calId;
|
|
}
|
|
|
|
public void setCalId(String newCalId) {
|
|
this.calId = newCalId;
|
|
}
|
|
|
|
public String getDisabtxtEmployeeNo() {
|
|
return this.disabtxtEmployeeNo;
|
|
}
|
|
|
|
public void setDisabtxtEmployeeNo(String newDisabtxtEmployeeNo) {
|
|
this.disabtxtEmployeeNo = newDisabtxtEmployeeNo;
|
|
}
|
|
|
|
public String getDisabtxtName() {
|
|
return this.disabtxtName;
|
|
}
|
|
|
|
public void setDisabtxtName(String newDisabtxtName) {
|
|
this.disabtxtName = newDisabtxtName;
|
|
}
|
|
|
|
public String getDisabtxtParticipation() {
|
|
return this.disabtxtParticipation;
|
|
}
|
|
|
|
public void setDisabtxtParticipation(String newDisabtxtParticipation) {
|
|
this.disabtxtParticipation = newDisabtxtParticipation;
|
|
}
|
|
|
|
public String getDisabtxtReasonForNonParticipation() {
|
|
return this.disabtxtReasonForNonParticipation;
|
|
}
|
|
|
|
public void setDisabtxtReasonForNonParticipation(String newDisabtxtReasonForNonParticipation) {
|
|
this.disabtxtReasonForNonParticipation = newDisabtxtReasonForNonParticipation;
|
|
}
|
|
|
|
public String getDisabtxtRating() {
|
|
return this.disabtxtRating;
|
|
}
|
|
|
|
public void setDisabtxtRating(String newDisabtxtRating) {
|
|
this.disabtxtRating = newDisabtxtRating;
|
|
}
|
|
|
|
public String getDisabtxtTrainingAttendanceDetail() {
|
|
return this.disabtxtTrainingAttendanceDetail;
|
|
}
|
|
|
|
public void setDisabtxtTrainingAttendanceDetail(String newDisabtxtTrainingAttendanceDetail) {
|
|
this.disabtxtTrainingAttendanceDetail = newDisabtxtTrainingAttendanceDetail;
|
|
}
|
|
}
|