shikeying
2022-11-14 450083f7d9d5b687c732acddefb56632f7b3d5ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
    }
 
}