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 HrmAttEmpShiftHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String employeeNo;
|
||||
|
||||
private String employeeName;
|
||||
|
||||
private String startDate;
|
||||
|
||||
private String endDate;
|
||||
|
||||
String empNoId;
|
||||
|
||||
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 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 getEmpNoId() {
|
||||
return this.empNoId;
|
||||
}
|
||||
|
||||
public void setEmpNoId(String newEmpNoId) {
|
||||
this.empNoId = newEmpNoId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user