first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmAdhocReportQVO extends BaseQueryVO implements Serializable {
|
||||
String id;
|
||||
|
||||
String code;
|
||||
|
||||
String category_tag;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCategory_tag() {
|
||||
return this.category_tag;
|
||||
}
|
||||
|
||||
public void setCategory_tag(String category_tag) {
|
||||
this.category_tag = category_tag;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user