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
28
29
30
31
32
33
34
35
36
37
| package org.springblade.es.vo;
|
| import lombok.Data;
|
| @Data
| public class EsParam {
|
| /**
| * 索引名称
| */
| private String indexName;
|
| /**
| * 表名称
| */
| private String tableName;
|
| /**
| * searchKey
| */
| private String searchKey;
|
| /**
| * 表id
| */
| private String tableId;
|
| /**
| * 社区编号
| */
| private String communityCode;
|
| /**
| * 地址编码
| */
| private String houseCode;
| }
|
|