first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmEmpPersHealthBean extends BaseDetailBean implements Serializable {
|
||||
private String healthDtls;
|
||||
|
||||
private String healthStartDate;
|
||||
|
||||
private String healthEndDate;
|
||||
|
||||
public String getHealthDtls() {
|
||||
return this.healthDtls;
|
||||
}
|
||||
|
||||
public void setHealthDtls(String newHealthDtls) {
|
||||
this.healthDtls = newHealthDtls;
|
||||
}
|
||||
|
||||
public String getHealthStartDate() {
|
||||
return this.healthStartDate;
|
||||
}
|
||||
|
||||
public void setHealthStartDate(String newHealthStartDate) {
|
||||
this.healthStartDate = newHealthStartDate;
|
||||
}
|
||||
|
||||
public String getHealthEndDate() {
|
||||
return this.healthEndDate;
|
||||
}
|
||||
|
||||
public void setHealthEndDate(String newHealthEndDate) {
|
||||
this.healthEndDate = newHealthEndDate;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user