add:集成es搜索模块

This commit is contained in:
2510220824
2021-06-22 17:14:39 +08:00
parent 90b6714345
commit 51d3edebfd
36 changed files with 8166 additions and 0 deletions
@@ -0,0 +1,17 @@
package com.adc.da.search.util;
/**
*Elasticsearch接口实现过程中用到的常量定义
* @author gaoyan
* date 2018/08/27
*/
public class ElasticsearchConstant {
//构造方法
public ElasticsearchConstant() {
// 不做操作
}
//正确删除后返回结构
public static final String SUCCESS_DELETED = "DELETED";
//删除过程中未找到对应数据返回结果
public static final String HAVE_NOT_FOUND= "NOT_FOUND";
}