17 lines
327 B
Java
17 lines
327 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmAttEmpAttOutQVO extends BaseQueryVO implements Serializable {
|
|
String empId;
|
|
|
|
public String getEmpId() {
|
|
return this.empId;
|
|
}
|
|
|
|
public void setEmpId(String newEmpId) {
|
|
this.empId = newEmpId;
|
|
}
|
|
}
|