package wenrgise.hrms.vo; import java.io.Serializable; import wenrgise.common.vo.BaseQueryVO; public class HrmEmpPersQVO extends BaseQueryVO implements Serializable { private String employeeNo; private String empId; public String getEmployeeNo() { return this.employeeNo; } public void setEmployeeNo(String newEmployeeNo) { this.employeeNo = newEmployeeNo; } public String getEmpId() { return this.empId; } public void setEmpId(String newEmpId) { this.empId = newEmpId; } }