57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmAttEmpDayOffQVO extends BaseQueryVO implements Serializable {
|
|
private String employeeNo;
|
|
|
|
private String periodStartDate;
|
|
|
|
private String periodEndDate;
|
|
|
|
private String empId;
|
|
|
|
private String employeeName;
|
|
|
|
public String getEmployeeNo() {
|
|
return this.employeeNo;
|
|
}
|
|
|
|
public void setEmployeeNo(String newEmployeeNo) {
|
|
this.employeeNo = newEmployeeNo;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
public String getEmpId() {
|
|
return this.empId;
|
|
}
|
|
|
|
public void setEmpId(String newEmpId) {
|
|
this.empId = newEmpId;
|
|
}
|
|
|
|
public String getEmployeeName() {
|
|
return this.employeeName;
|
|
}
|
|
|
|
public void setEmployeeName(String newEmployeeName) {
|
|
this.employeeName = newEmployeeName;
|
|
}
|
|
}
|