|
1.常规查询语句生成代码
/* *
* author: zhanggw
*生成时间3360 2021/9/27
*/
Public class SearchUtil {
private final static logger logger=logger factory . getlogger(search util . class);
public final static string operator _ GTE='=';
public final static string operator _ LTE='=';
public final static string operator _ net='!=';
public final static string operator _ gt=' ';
public final static string operator _ et='=';
public final static string operator _ lt=' ';
public final static string operator _ and=' and ';
public final static string operator _ or=' or ';
private final static liststring operator _ list=new ArrayList(arrays . as list(operator _ GTE,operator _;
/* *
*创建一个句子功能概述一般es查询
*详细的功能说明
* { |
|