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
| package org.springblade.common.constant;
|
| import java.util.ArrayList;
| import java.util.List;
|
| /**
| * es 表对应的属性常量
| * @author zhongrj
| * @since 2024-04-08
| */
| public class EsTableConstant {
|
|
| /**
| * 1. 通知
| */
| public static List<String> articleList = new ArrayList<String>()
| {{
| add("tableId");
| add("tableName");
| add("title");
| add("type");
| add("content");
| add("articleType");
| }};
|
|
| }
|
|