first commit
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmAttEmpDayOffHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String empId;
|
||||
|
||||
private String employeeNo;
|
||||
|
||||
private String employeeName;
|
||||
|
||||
private String periodStartDate;
|
||||
|
||||
private String periodEndDate;
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getEmployeeNo() {
|
||||
return this.employeeNo;
|
||||
}
|
||||
|
||||
public void setEmployeeNo(String newEmployeeNo) {
|
||||
this.employeeNo = newEmployeeNo;
|
||||
}
|
||||
|
||||
public String getEmployeeName() {
|
||||
return this.employeeName;
|
||||
}
|
||||
|
||||
public void setEmployeeName(String newEmployeeName) {
|
||||
this.employeeName = newEmployeeName;
|
||||
}
|
||||
|
||||
public String getPeriodStartDate() {
|
||||
return this.periodStartDate;
|
||||
}
|
||||
|
||||
public void setPeriodStartDate(String newPeriodStartDate) {
|
||||
this.periodStartDate = newPeriodStartDate;
|
||||
}
|
||||
|
||||
public String getPeriodEndDate() {
|
||||
return this.periodEndDate;
|
||||
}
|
||||
|
||||
public void setPeriodEndDate(String newPeriodEndDate) {
|
||||
this.periodEndDate = newPeriodEndDate;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user