57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
package 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;
|
|
}
|
|
}
|