package com.iplatform.rectext.pojo;
|
|
import java.io.Serializable;
|
|
public class SearchRequest implements Serializable {
|
|
private String query = null;
|
|
private String type = null;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getQuery() {
|
return query;
|
}
|
|
public void setQuery(String query) {
|
this.query = query;
|
}
|
|
}
|