147 lines
3.1 KiB
Java
147 lines
3.1 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmEmpDiscActionDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtLocation;
|
|
|
|
private String txtMisconduct;
|
|
|
|
private String txtFromDate;
|
|
|
|
private String txtToDate;
|
|
|
|
private String txtActionTaken;
|
|
|
|
private String txtStatus;
|
|
|
|
private String txtStatusEffectDate;
|
|
|
|
private String txtRemarks;
|
|
|
|
private String txtLocationId;
|
|
|
|
private String txtChrgShtDate;
|
|
|
|
private String txtInqDate;
|
|
|
|
private String txtInqOfficer;
|
|
|
|
private String txtActionOfficer;
|
|
|
|
private String txtAppealDate;
|
|
|
|
public String getTxtChrgShtDate() {
|
|
return this.txtChrgShtDate;
|
|
}
|
|
|
|
public void setTxtChrgShtDate(String txtChrgShtDate) {
|
|
this.txtChrgShtDate = txtChrgShtDate;
|
|
}
|
|
|
|
public String getTxtInqDate() {
|
|
return this.txtInqDate;
|
|
}
|
|
|
|
public void setTxtInqDate(String txtInqDate) {
|
|
this.txtInqDate = txtInqDate;
|
|
}
|
|
|
|
public String getTxtInqOfficer() {
|
|
return this.txtInqOfficer;
|
|
}
|
|
|
|
public void setTxtInqOfficer(String txtInqOfficer) {
|
|
this.txtInqOfficer = txtInqOfficer;
|
|
}
|
|
|
|
public String getTxtActionOfficer() {
|
|
return this.txtActionOfficer;
|
|
}
|
|
|
|
public void setTxtActionOfficer(String txtActionOfficer) {
|
|
this.txtActionOfficer = txtActionOfficer;
|
|
}
|
|
|
|
public String getTxtAppealDate() {
|
|
return this.txtAppealDate;
|
|
}
|
|
|
|
public void setTxtAppealDate(String txtAppealDate) {
|
|
this.txtAppealDate = txtAppealDate;
|
|
}
|
|
|
|
public String getTxtLocation() {
|
|
return this.txtLocation;
|
|
}
|
|
|
|
public void setTxtLocation(String newTxtLocation) {
|
|
this.txtLocation = newTxtLocation;
|
|
}
|
|
|
|
public String getTxtMisconduct() {
|
|
return this.txtMisconduct;
|
|
}
|
|
|
|
public void setTxtMisconduct(String newTxtMisconduct) {
|
|
this.txtMisconduct = newTxtMisconduct;
|
|
}
|
|
|
|
public String getTxtFromDate() {
|
|
return this.txtFromDate;
|
|
}
|
|
|
|
public void setTxtFromDate(String newTxtFromDate) {
|
|
this.txtFromDate = newTxtFromDate;
|
|
}
|
|
|
|
public String getTxtToDate() {
|
|
return this.txtToDate;
|
|
}
|
|
|
|
public void setTxtToDate(String newTxtToDate) {
|
|
this.txtToDate = newTxtToDate;
|
|
}
|
|
|
|
public String getTxtActionTaken() {
|
|
return this.txtActionTaken;
|
|
}
|
|
|
|
public void setTxtActionTaken(String newTxtActionTaken) {
|
|
this.txtActionTaken = newTxtActionTaken;
|
|
}
|
|
|
|
public String getTxtStatus() {
|
|
return this.txtStatus;
|
|
}
|
|
|
|
public void setTxtStatus(String newTxtStatus) {
|
|
this.txtStatus = newTxtStatus;
|
|
}
|
|
|
|
public String getTxtStatusEffectDate() {
|
|
return this.txtStatusEffectDate;
|
|
}
|
|
|
|
public void setTxtStatusEffectDate(String newTxtStatusEffectDate) {
|
|
this.txtStatusEffectDate = newTxtStatusEffectDate;
|
|
}
|
|
|
|
public String getTxtRemarks() {
|
|
return this.txtRemarks;
|
|
}
|
|
|
|
public void setTxtRemarks(String newTxtRemarks) {
|
|
this.txtRemarks = newTxtRemarks;
|
|
}
|
|
|
|
public String getTxtLocationId() {
|
|
return this.txtLocationId;
|
|
}
|
|
|
|
public void setTxtLocationId(String newTxtLocationId) {
|
|
this.txtLocationId = newTxtLocationId;
|
|
}
|
|
}
|