Files
HRMS/hrmsWeb/WEB-INF/classes/wenrgise/hrms/vo/HrmGenEligRuleQueryQVO.java
2025-07-28 13:56:49 +05:30

17 lines
369 B
Java

package WEB-INF.classes.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;
}
}