27 lines
538 B
Java
27 lines
538 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmEmpDiscActionQVO extends BaseQueryVO implements Serializable {
|
|
String employeeNo;
|
|
|
|
String caseFlag;
|
|
|
|
public String getEmployeeNo() {
|
|
return this.employeeNo;
|
|
}
|
|
|
|
public void setEmployeeNo(String newEmployeeNo) {
|
|
this.employeeNo = newEmployeeNo;
|
|
}
|
|
|
|
public String getCaseFlag() {
|
|
return this.caseFlag;
|
|
}
|
|
|
|
public void setCaseFlag(String newCaseFlag) {
|
|
this.caseFlag = newCaseFlag;
|
|
}
|
|
}
|