17 lines
353 B
Java
17 lines
353 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmGenEligRuleQueryQVO extends BaseQueryVO implements Serializable {
|
|
private String docType;
|
|
|
|
public String getDocType() {
|
|
return this.docType;
|
|
}
|
|
|
|
public void setDocType(String newDocType) {
|
|
this.docType = newDocType;
|
|
}
|
|
}
|