From c31fbf61daddc19ec69a04c8237f64029f82bc10 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Wed, 18 May 2022 17:29:44 +0800 Subject: [PATCH 1/6] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20es?= =?UTF-8?q?=20=E5=85=A8=E6=96=87=20=E6=A3=80=E7=B4=A2=20=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/SearchCenterServiceImpl.java | 51 ++-- doc/es/es 创建索引字段_bussioness.txt | 186 ++++++++++++ doc/es/es 创建索引字段_fulltextserch.txt | 10 + doc/es/es 创建索引字段_laws.txt | 138 +++++++++ doc/es/es 创建索引字段_stand.txt | 272 ++++++++++++++++++ 5 files changed, 623 insertions(+), 34 deletions(-) diff --git a/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java b/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java index 1fff2406..4a910635 100644 --- a/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java +++ b/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java @@ -1209,17 +1209,11 @@ public class SearchCenterServiceImpl implements SearchCenterService { // 记录搜索记录到数据库中 if(StringUtils.isNotEmpty(searchInfoEO.getSelectValue())){ - boolSelectValue.should(QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(), - "title" - ).minimumShouldMatch("100%").field("title",10f)); - boolSelectValue.should(QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(), - "textContent" - ).minimumShouldMatch("100%").field("title",10f)); - boolSelectValue.should(QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(), - "textItems" - ).minimumShouldMatch("100%").field("title",10f)); - boolSelectValue.should(QueryBuilders.wildcardQuery("title.keyword","*"+searchInfoEO.getSelectValue()+"*")); - boolQueryBuilder.must(boolSelectValue); + QueryBuilder multiQueryBuilder = QueryBuilders.multiMatchQuery(""); + multiQueryBuilder = QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(), + "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + boolQueryBuilder.must(multiQueryBuilder); } //在结果中检索 if (StringUtils.isNotEmpty(searchInfoEO.getResultKeyword())) { @@ -1481,29 +1475,19 @@ public class SearchCenterServiceImpl implements SearchCenterService { if(null != value || null != select){ if (null != value && select == null) { - boolSelectValue - .should(QueryBuilders.wildcardQuery("sortTitle.keyword", "*" + value.toUpperCase() + "*").boost(1005f)) - .should(QueryBuilders.wildcardQuery("numberTitle.keyword", "*" + value.toUpperCase() + "*").boost(1003f)) - .should(QueryBuilders.wildcardQuery("yearOrder.keyword", "*" + value.toUpperCase() + "*").boost(1002f)) - .should(QueryBuilders.wildcardQuery("nameTitle.keyword", "*" + value.toUpperCase() + "*").boost(1001f)) - .should(QueryBuilders.wildcardQuery("title.keyword", "*" + value.toUpperCase() + "*").boost(1000f)) - .should(QueryBuilders.wildcardQuery("textContent.keyword", "*" + value.toUpperCase() + "*").boost(0.0000000000000000000000000000000001f)) - .should(QueryBuilders.wildcardQuery("issue_time", "*" + value.toUpperCase() + "*")); -// multiQueryBuilder = QueryBuilders.multiMatchQuery("*"+value+"*", -// "title.keyword", "textContent", "issue_time").minimumShouldMatch("100%").field("title.keyword", 1000f).field("textContent.keyword", 0.0000000000000000000000000000000001f); -//// boolQueryMust.must(multiQueryBuilder); -// boolQueryShould.should(multiQueryBuilder); + QueryBuilder queryBuilder1 = QueryBuilders.multiMatchQuery(""); + queryBuilder1 = QueryBuilders.multiMatchQuery(value, + "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + boolQueryShould.must(queryBuilder1); } // searchInfoEO.setSelectValue(searchInfoEO.getSelectValue().replace("-","\\-")); if (null != select) { - boolSelectValue - .should(QueryBuilders.wildcardQuery("sortTitle.keyword", "*" + real.toUpperCase() + "*").boost(1005f)) - .should(QueryBuilders.wildcardQuery("numberTitle.keyword", "*" + real.toUpperCase() + "*").boost(1003f)) - .should(QueryBuilders.wildcardQuery("yearOrder.keyword", "*" + real.toUpperCase() + "*").boost(1002f)) - .should(QueryBuilders.wildcardQuery("nameTitle.keyword", "*" + real.toUpperCase() + "*").boost(1001f)) - .should(QueryBuilders.wildcardQuery("title.keyword", "*" + real.toUpperCase() + "*").boost(1000f)) - .should(QueryBuilders.wildcardQuery("textContent.keyword", "*" + real.toUpperCase() + "*").boost(0.0000000000000000000000000000000001f)) - .should(QueryBuilders.wildcardQuery("issue_time", "*" + real.toUpperCase() + "*")); + QueryBuilder queryBuilder2 = QueryBuilders.multiMatchQuery(""); + queryBuilder2 = QueryBuilders.multiMatchQuery(real, + "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + boolQueryShould.must(queryBuilder2); // for (String se : selects) { // if (StringUtils.isNotBlank(se)) { // boolSelectValue @@ -1519,7 +1503,6 @@ public class SearchCenterServiceImpl implements SearchCenterService { // .should(QueryBuilders.wildcardQuery("issue_time", "*" + real + "*")); // boolQueryShould.must(boolSelectValue); // } - boolQueryShould.must(boolSelectValue); } BoolQueryBuilder queryBuilder = new BoolQueryBuilder(); @@ -1541,7 +1524,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { //在结果中检索 // boolQueryBuilder.must(multiQueryBuilder); HighlightBuilder hiBuilder=new HighlightBuilder(); - HighlightBuilder.Field highlightTitle = new HighlightBuilder.Field("title.keyword"); + HighlightBuilder.Field highlightTitle = new HighlightBuilder.Field("title"); hiBuilder.field(highlightTitle); HighlightBuilder.Field highlightUser = new HighlightBuilder.Field("textContent"); hiBuilder.field(highlightUser); @@ -1567,7 +1550,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { Map sourceAsMap = searchHit.getSourceAsMap(); //解析高亮字段 Map highlightFields = searchHit.getHighlightFields(); - HighlightField field= highlightFields.get("title.keyword"); + HighlightField field= highlightFields.get("title"); if(field!= null){ Text[] fragments = field.fragments(); String n_field = ""; diff --git a/doc/es/es 创建索引字段_bussioness.txt b/doc/es/es 创建索引字段_bussioness.txt index 73c54488..cc31fd52 100644 --- a/doc/es/es 创建索引字段_bussioness.txt +++ b/doc/es/es 创建索引字段_bussioness.txt @@ -23,6 +23,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "BDTQBBHBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -32,6 +34,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "BDTQBBHBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -41,6 +45,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "BZSMBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -50,6 +56,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "BZSMBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -59,6 +67,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CDZD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -68,6 +78,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CSZD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -77,6 +89,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYBZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -86,6 +100,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYBZName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -95,6 +111,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -104,6 +122,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -113,6 +133,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCDYBXHBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -122,6 +144,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCDYBXHBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -131,6 +155,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCDYMCBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -140,6 +166,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCDYMCBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -149,6 +177,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCVPPSBMBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -158,6 +188,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCVPPSBMBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -167,6 +199,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCVPPSCNBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -176,6 +210,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "CYCVPPSCNBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -185,6 +221,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DTQBBHBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -194,6 +232,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DTQBBHBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -203,6 +243,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DYBXHBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -212,6 +254,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DYBXHBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -221,6 +265,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DYMCBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -230,6 +276,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "DYMCBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -239,6 +287,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FBGBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -248,6 +298,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FBGBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -257,6 +309,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FSRQBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -266,6 +320,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FSRQBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -275,6 +331,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FZRQBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -284,6 +342,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "FZRQBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -293,6 +353,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "GLWJBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -302,6 +364,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "GLWJBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -311,6 +375,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "KCVPPSBMBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -320,6 +386,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "KCVPPSBMBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -329,6 +397,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "KCVPPSCNBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -338,6 +408,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "KCVPPSCNBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -347,6 +419,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "LSBBBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -356,6 +430,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "LSBBBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -365,6 +441,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "NYLXCLASS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -374,6 +452,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "NYLXCLASSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -383,6 +463,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QCDW": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -392,6 +474,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QCDWName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -401,6 +485,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QCDWShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -410,6 +496,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QCRBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -419,6 +507,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QCRBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -428,6 +518,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QTWJBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -437,6 +529,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "QTWJBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -455,6 +549,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "SYCPXCLASS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -464,6 +560,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "SYCPXCLASSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -473,6 +571,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "SYCXCLASS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -482,6 +582,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "SYCXCLASSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -491,6 +593,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "TXLBBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -500,6 +604,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "TXLBBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -509,6 +615,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "VPPSBMBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -518,6 +626,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "VPPSBMBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -527,6 +637,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "VPPSCNBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -536,6 +648,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "VPPSCNBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -545,6 +659,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "WJSCRYBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -554,6 +670,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "WJSCRYBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -563,6 +681,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XCSJBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -572,6 +692,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XCSJBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -581,6 +703,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -590,6 +714,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -599,6 +725,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGJLBUSS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -608,6 +736,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGJLBUSSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -617,6 +747,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGLC": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -626,6 +758,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "XGLCName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -635,6 +769,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "YYBZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -644,6 +780,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "YYBZName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -653,6 +791,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "ZFCDXZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -662,6 +802,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "content": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -671,6 +813,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "country": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -709,6 +853,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "nameshow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -718,6 +864,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "numberExpNull": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -727,6 +875,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "numbershow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -754,6 +904,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "replaceStandNum": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -763,6 +915,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "replace_stand_num": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -772,6 +926,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "replacedStandNum": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -781,6 +937,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "replaced_stand_num": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -790,6 +948,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "standEnName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -799,6 +959,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "standNumber": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -808,6 +970,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "standSort": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -817,6 +981,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "standSortShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -836,6 +1002,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "stand_code": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -845,6 +1013,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "stand_en_name": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -854,6 +1024,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "stand_name": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -863,6 +1035,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "stand_sort": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -872,6 +1046,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "stand_status": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -890,6 +1066,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "standstateshow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -899,6 +1077,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "statecode": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -908,6 +1088,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "textStatusBuss": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -917,6 +1099,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "textStatusBussName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -926,6 +1110,8 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true }, "type": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_fulltextserch.txt b/doc/es/es 创建索引字段_fulltextserch.txt index 1d9b678a..0c40ec52 100644 --- a/doc/es/es 创建索引字段_fulltextserch.txt +++ b/doc/es/es 创建索引字段_fulltextserch.txt @@ -53,6 +53,8 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true }, "numberTitle": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -63,6 +65,8 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true }, "nameTitle": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -83,6 +87,8 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true }, "textContent": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -92,6 +98,8 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true }, "textItems": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -101,6 +109,8 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true }, "title": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_laws.txt b/doc/es/es 创建索引字段_laws.txt index 0ad5b636..603dc84e 100644 --- a/doc/es/es 创建索引字段_laws.txt +++ b/doc/es/es 创建索引字段_laws.txt @@ -5,6 +5,8 @@ laws/laws/_mapping?pretty&include_type_name=true "properties": { "BDTWJHLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -14,6 +16,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "BDTWJHLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -23,6 +27,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "CHJLLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -32,6 +38,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "CHJLLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -41,6 +49,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "CYSDLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -50,6 +60,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "CYSDLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -59,6 +71,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "CYSDLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -68,6 +82,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "DTWJHLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -77,6 +93,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "DTWJHLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -86,6 +104,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "FBJGLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -95,6 +115,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "GCWBLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -104,6 +126,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "GCWBLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -113,6 +137,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "GLWJLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -122,6 +148,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "GLWJLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -131,6 +159,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "JDWJLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -140,6 +170,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "JDWJLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -149,6 +181,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "NYLXLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -158,6 +192,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "NYLXLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -167,6 +203,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "NYLXLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -176,6 +214,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "SSRQLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -185,6 +225,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "SSRQLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -194,6 +236,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGDWLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -203,6 +247,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGDWLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -212,6 +258,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGDWLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -221,6 +269,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGRLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -230,6 +280,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGRLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -239,6 +291,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "TGRLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -248,6 +302,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "XCXSSRQLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -257,6 +313,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "XCXSSRQLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -266,6 +324,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "XGLC": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -275,6 +335,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "XGLCName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -284,6 +346,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "YYBZZCLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -293,6 +357,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "YYBZZCLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -302,6 +368,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "YYRZLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -311,6 +379,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "YYRZLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -320,6 +390,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "YYRZLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -329,6 +401,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZCWBLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -338,6 +412,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZCWBLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -347,6 +423,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZCXSSRQLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -356,6 +434,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZCXSSRQLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -365,6 +445,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRBMLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -374,6 +456,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRBMLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -383,6 +467,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRBMLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -392,6 +478,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRGCSLAWS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -401,6 +489,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRGCSLAWSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -410,6 +500,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "ZRGCSLAWSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -455,6 +547,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "content": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -464,6 +558,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "country": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -473,6 +569,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "countryShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -491,6 +589,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "isRelateAccess": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -500,6 +600,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "isRelateAccessName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -509,6 +611,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "issueCompany": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -538,6 +642,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsBulletin": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -547,6 +653,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsEnName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -556,6 +664,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsLabel": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -565,6 +675,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsLabelName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -574,6 +686,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -583,6 +697,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsNo": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -592,6 +708,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsNotisyncNum": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -610,6 +728,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsRemark": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -619,6 +739,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsSycx": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -628,6 +750,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsSycxName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -637,6 +761,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsSyqy": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -646,6 +772,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsSyqyName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -655,6 +783,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsTextState": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -664,6 +794,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsTextStateName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -673,6 +805,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsType": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -682,6 +816,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "lawsTypeName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -719,6 +855,8 @@ laws/laws/_mapping?pretty&include_type_name=true }, "type": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_stand.txt b/doc/es/es 创建索引字段_stand.txt index 1cda751f..bb090c75 100644 --- a/doc/es/es 创建索引字段_stand.txt +++ b/doc/es/es 创建索引字段_stand.txt @@ -23,6 +23,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BBFDTBZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -32,6 +34,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BBFDTBZName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -41,6 +45,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BDTBH": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -50,6 +56,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BDTBZH": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -59,6 +67,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BDTBZHName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -68,6 +78,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BFDTBZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -77,6 +89,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BFDTBZName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -86,6 +100,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BPG": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -95,6 +111,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BPGName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -104,6 +122,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BYYBJ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -113,6 +133,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "BYYBJName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -122,6 +144,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CA": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -131,6 +155,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CAName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -140,6 +166,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CBBH": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -149,6 +177,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CBBHName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -158,6 +188,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CBCD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -167,6 +199,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CBCDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -176,6 +210,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CBCDShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -185,6 +221,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CHJL": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -194,6 +232,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CHJLName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -203,6 +243,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CLLX": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -212,6 +254,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CLLXName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -221,6 +265,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CLLXShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -230,6 +276,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYCVPPSBM": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -239,6 +287,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYCVPPSBMName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -248,6 +298,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYCVPPSCN": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -257,6 +309,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYCVPPSCNName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -266,6 +320,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYSD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -275,6 +331,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYSDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -284,6 +342,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYSDShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -293,6 +353,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYZBPM": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -302,6 +364,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYZBPMName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -311,6 +375,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "CYZBPMShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -320,6 +386,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DTBJH": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -329,6 +397,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DTBJHName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -338,6 +408,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYBXH": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -347,6 +419,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYBXHCAR": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -356,6 +430,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYBXHCARName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -365,6 +441,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYBXHName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -374,6 +452,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYMC": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -383,6 +463,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYMCCAR": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -392,6 +474,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYMCCARName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -401,6 +485,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "DYMCName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -410,6 +496,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "FBGBJBD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -419,6 +507,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "FBGBJBDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -428,6 +518,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GKDW": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -437,6 +529,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GKDWName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -446,6 +540,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GKDWShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -455,6 +551,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GLWJ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -464,6 +562,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GLWJName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -473,6 +573,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GXHBQ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -482,6 +584,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "GXHBQName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -491,6 +595,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "JDWJ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -500,6 +606,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "JDWJName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -509,6 +617,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KCCVPPSBM": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -518,6 +628,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KCCVPPSBMName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -527,6 +639,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KCCVPPSCN": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -536,6 +650,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KCCVPPSCNName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -545,6 +661,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KWJ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -554,6 +672,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "KWJName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -563,6 +683,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "NYLX": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -572,6 +694,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "NYLXName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -581,6 +705,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "NYLXShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -590,6 +716,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "QCDW": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -599,6 +727,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "QCDWName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -608,6 +738,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "QCDWShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -617,6 +749,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SSG": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -626,6 +760,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SSGName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -635,6 +771,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SSRQ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -644,6 +782,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SSRQName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -653,6 +793,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYCPX": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -662,6 +804,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYCPXName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -671,6 +815,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYCPXShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -680,6 +826,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYRZ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -689,6 +837,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYRZName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -698,6 +848,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "SYRZShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -707,6 +859,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "TXLB": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -716,6 +870,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "TXLBName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -725,6 +881,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "TXLBShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -734,6 +892,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "WAS_": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -743,6 +903,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "WQW_": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -752,6 +914,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "WSSMR": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -761,6 +925,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "WSSMRName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -770,6 +936,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "WSSMRShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -779,6 +947,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XCXSSRQ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -788,6 +958,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XCXSSRQName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -797,6 +969,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XDB": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -806,6 +980,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XDBName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -815,6 +991,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XGD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -824,6 +1002,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XGDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -833,6 +1013,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XGLC": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -842,6 +1024,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "XGLCName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -851,6 +1035,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "YYBJ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -860,6 +1046,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "YYBJName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -869,6 +1057,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZBJBD": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -878,6 +1068,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZBJBDName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -887,6 +1079,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZCCSSRQ": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -896,6 +1090,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZCCSSRQName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -905,6 +1101,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZQYJG": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -914,6 +1112,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZQYJGName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -923,6 +1123,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRBM": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -932,6 +1134,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRBMName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -941,6 +1145,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRBMShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -950,6 +1156,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRGCS": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -959,6 +1167,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRGCSName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -968,6 +1178,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "ZRGCSShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -977,6 +1189,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "baseSearchContent": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -986,6 +1200,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "content": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -995,6 +1211,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "country": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1004,6 +1222,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "countryShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1022,6 +1242,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "isRelateAccess": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1031,6 +1253,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "isRelateAccessName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1069,6 +1293,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "mapItems": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1078,6 +1304,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "nameshow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1087,6 +1315,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "numberExpNull": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1096,6 +1326,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "numbershow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1105,6 +1337,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standEnName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1114,6 +1348,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1123,6 +1359,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standNature": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1132,6 +1370,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standNatureName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1141,6 +1381,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standNumber": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1150,6 +1392,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standSort": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1159,6 +1403,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standSortShow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1168,6 +1414,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standSystem": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1177,6 +1425,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standType": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1186,6 +1436,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standYear": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1196,6 +1448,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "stand_en_name": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1205,6 +1459,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "stand_name": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1214,6 +1470,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "stand_number": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1223,6 +1481,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "stand_sort": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1232,6 +1492,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "stand_year": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1241,6 +1503,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "standstateshow": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1250,6 +1514,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "synopsis": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1259,6 +1525,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "textStatus": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1268,6 +1536,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "textStatusName": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", @@ -1277,6 +1547,8 @@ stand/stand/_mapping?pretty&include_type_name=true }, "type": { "type": "text", + "analyzer": "ik_max_word", + "search_analyzer": "ik_smart", "fields": { "keyword": { "type": "keyword", From 4dd4d296d0c542e6d35290d461c37e45a694d565 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Wed, 18 May 2022 21:58:48 +0800 Subject: [PATCH 2/6] feat: There is no way the,shenme --- .../service/impl/SearchCenterServiceImpl.java | 6 +- doc/es/es 创建索引字段_bussioness.txt | 186 ++++++------ doc/es/es 创建索引字段_fulltextserch.txt | 10 +- doc/es/es 创建索引字段_laws.txt | 138 ++++----- doc/es/es 创建索引字段_stand.txt | 272 +++++++++--------- 5 files changed, 306 insertions(+), 306 deletions(-) diff --git a/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java b/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java index 4a910635..839acb7f 100644 --- a/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java +++ b/adc-da-search/src/main/java/com/adc/da/search/service/impl/SearchCenterServiceImpl.java @@ -1212,7 +1212,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { QueryBuilder multiQueryBuilder = QueryBuilders.multiMatchQuery(""); multiQueryBuilder = QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(), "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" - ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f).field("textContent",100f).field("issue_time",10f); boolQueryBuilder.must(multiQueryBuilder); } //在结果中检索 @@ -1478,7 +1478,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { QueryBuilder queryBuilder1 = QueryBuilders.multiMatchQuery(""); queryBuilder1 = QueryBuilders.multiMatchQuery(value, "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" - ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f).field("textContent",100f).field("issue_time",10f); boolQueryShould.must(queryBuilder1); } // searchInfoEO.setSelectValue(searchInfoEO.getSelectValue().replace("-","\\-")); @@ -1486,7 +1486,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { QueryBuilder queryBuilder2 = QueryBuilders.multiMatchQuery(""); queryBuilder2 = QueryBuilders.multiMatchQuery(real, "sortTitle","numberTitle","yearOrder","nameTitle","title","textContent","issue_time" - ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f); + ).minimumShouldMatch("100%").field("sortTitle",1005f).field("numberTitle",1004f).field("yearOrder",1003f).field("nameTitle",1002f).field("title",1000f).field("textContent",100f).field("issue_time",10f); boolQueryShould.must(queryBuilder2); // for (String se : selects) { // if (StringUtils.isNotBlank(se)) { diff --git a/doc/es/es 创建索引字段_bussioness.txt b/doc/es/es 创建索引字段_bussioness.txt index cc31fd52..99dc28a6 100644 --- a/doc/es/es 创建索引字段_bussioness.txt +++ b/doc/es/es 创建索引字段_bussioness.txt @@ -24,7 +24,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "BDTQBBHBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -35,7 +35,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "BDTQBBHBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -46,7 +46,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "BZSMBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -57,7 +57,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "BZSMBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -68,7 +68,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CDZD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -79,7 +79,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CSZD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -90,7 +90,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYBZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -101,7 +101,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYBZName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -112,7 +112,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -123,7 +123,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -134,7 +134,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCDYBXHBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -145,7 +145,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCDYBXHBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -156,7 +156,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCDYMCBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -167,7 +167,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCDYMCBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -178,7 +178,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCVPPSBMBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -189,7 +189,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCVPPSBMBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -200,7 +200,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCVPPSCNBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -211,7 +211,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "CYCVPPSCNBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -222,7 +222,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DTQBBHBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -233,7 +233,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DTQBBHBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -244,7 +244,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DYBXHBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -255,7 +255,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DYBXHBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -266,7 +266,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DYMCBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -277,7 +277,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "DYMCBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -288,7 +288,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FBGBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -299,7 +299,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FBGBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -310,7 +310,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FSRQBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -321,7 +321,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FSRQBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -332,7 +332,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FZRQBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -343,7 +343,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "FZRQBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -354,7 +354,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "GLWJBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -365,7 +365,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "GLWJBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -376,7 +376,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "KCVPPSBMBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -387,7 +387,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "KCVPPSBMBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -398,7 +398,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "KCVPPSCNBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -409,7 +409,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "KCVPPSCNBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -420,7 +420,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "LSBBBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -431,7 +431,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "LSBBBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -442,7 +442,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "NYLXCLASS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -453,7 +453,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "NYLXCLASSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -464,7 +464,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QCDW": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -475,7 +475,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QCDWName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -486,7 +486,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QCDWShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -497,7 +497,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QCRBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -508,7 +508,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QCRBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -519,7 +519,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QTWJBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -530,7 +530,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "QTWJBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -550,7 +550,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "SYCPXCLASS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -561,7 +561,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "SYCPXCLASSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -572,7 +572,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "SYCXCLASS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -583,7 +583,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "SYCXCLASSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -594,7 +594,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "TXLBBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -605,7 +605,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "TXLBBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -616,7 +616,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "VPPSBMBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -627,7 +627,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "VPPSBMBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -638,7 +638,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "VPPSCNBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -649,7 +649,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "VPPSCNBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -660,7 +660,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "WJSCRYBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -671,7 +671,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "WJSCRYBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -682,7 +682,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XCSJBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -693,7 +693,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XCSJBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -704,7 +704,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -715,7 +715,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -726,7 +726,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGJLBUSS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -737,7 +737,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGJLBUSSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -748,7 +748,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGLC": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -759,7 +759,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "XGLCName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -770,7 +770,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "YYBZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -781,7 +781,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "YYBZName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -792,7 +792,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "ZFCDXZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -803,7 +803,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "content": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -814,7 +814,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "country": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -854,7 +854,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "nameshow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -865,7 +865,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "numberExpNull": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -876,7 +876,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "numbershow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -905,7 +905,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "replaceStandNum": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -916,7 +916,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "replace_stand_num": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -927,7 +927,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "replacedStandNum": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -938,7 +938,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "replaced_stand_num": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -949,7 +949,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "standEnName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -960,7 +960,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "standNumber": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -971,7 +971,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "standSort": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -982,7 +982,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "standSortShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1003,7 +1003,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "stand_code": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1014,7 +1014,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "stand_en_name": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1025,7 +1025,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "stand_name": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1036,7 +1036,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "stand_sort": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1047,7 +1047,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "stand_status": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1067,7 +1067,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "standstateshow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1078,7 +1078,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "statecode": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1089,7 +1089,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "textStatusBuss": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1100,7 +1100,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "textStatusBussName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1111,7 +1111,7 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "type": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_fulltextserch.txt b/doc/es/es 创建索引字段_fulltextserch.txt index 0c40ec52..22a5eb7f 100644 --- a/doc/es/es 创建索引字段_fulltextserch.txt +++ b/doc/es/es 创建索引字段_fulltextserch.txt @@ -54,7 +54,7 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true "numberTitle": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -66,7 +66,7 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true "nameTitle": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -88,7 +88,7 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true "textContent": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -99,7 +99,7 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true "textItems": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -110,7 +110,7 @@ fulltextserch/fulltextserch/_mapping?pretty&include_type_name=true "title": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_laws.txt b/doc/es/es 创建索引字段_laws.txt index 603dc84e..a42eb50d 100644 --- a/doc/es/es 创建索引字段_laws.txt +++ b/doc/es/es 创建索引字段_laws.txt @@ -6,7 +6,7 @@ laws/laws/_mapping?pretty&include_type_name=true "BDTWJHLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -17,7 +17,7 @@ laws/laws/_mapping?pretty&include_type_name=true "BDTWJHLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -28,7 +28,7 @@ laws/laws/_mapping?pretty&include_type_name=true "CHJLLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -39,7 +39,7 @@ laws/laws/_mapping?pretty&include_type_name=true "CHJLLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -50,7 +50,7 @@ laws/laws/_mapping?pretty&include_type_name=true "CYSDLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -61,7 +61,7 @@ laws/laws/_mapping?pretty&include_type_name=true "CYSDLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -72,7 +72,7 @@ laws/laws/_mapping?pretty&include_type_name=true "CYSDLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -83,7 +83,7 @@ laws/laws/_mapping?pretty&include_type_name=true "DTWJHLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -94,7 +94,7 @@ laws/laws/_mapping?pretty&include_type_name=true "DTWJHLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -105,7 +105,7 @@ laws/laws/_mapping?pretty&include_type_name=true "FBJGLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -116,7 +116,7 @@ laws/laws/_mapping?pretty&include_type_name=true "GCWBLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -127,7 +127,7 @@ laws/laws/_mapping?pretty&include_type_name=true "GCWBLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -138,7 +138,7 @@ laws/laws/_mapping?pretty&include_type_name=true "GLWJLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -149,7 +149,7 @@ laws/laws/_mapping?pretty&include_type_name=true "GLWJLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -160,7 +160,7 @@ laws/laws/_mapping?pretty&include_type_name=true "JDWJLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -171,7 +171,7 @@ laws/laws/_mapping?pretty&include_type_name=true "JDWJLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -182,7 +182,7 @@ laws/laws/_mapping?pretty&include_type_name=true "NYLXLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -193,7 +193,7 @@ laws/laws/_mapping?pretty&include_type_name=true "NYLXLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -204,7 +204,7 @@ laws/laws/_mapping?pretty&include_type_name=true "NYLXLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -215,7 +215,7 @@ laws/laws/_mapping?pretty&include_type_name=true "SSRQLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -226,7 +226,7 @@ laws/laws/_mapping?pretty&include_type_name=true "SSRQLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -237,7 +237,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGDWLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -248,7 +248,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGDWLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -259,7 +259,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGDWLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -270,7 +270,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGRLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -281,7 +281,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGRLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -292,7 +292,7 @@ laws/laws/_mapping?pretty&include_type_name=true "TGRLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -303,7 +303,7 @@ laws/laws/_mapping?pretty&include_type_name=true "XCXSSRQLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -314,7 +314,7 @@ laws/laws/_mapping?pretty&include_type_name=true "XCXSSRQLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -325,7 +325,7 @@ laws/laws/_mapping?pretty&include_type_name=true "XGLC": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -336,7 +336,7 @@ laws/laws/_mapping?pretty&include_type_name=true "XGLCName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -347,7 +347,7 @@ laws/laws/_mapping?pretty&include_type_name=true "YYBZZCLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -358,7 +358,7 @@ laws/laws/_mapping?pretty&include_type_name=true "YYBZZCLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -369,7 +369,7 @@ laws/laws/_mapping?pretty&include_type_name=true "YYRZLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -380,7 +380,7 @@ laws/laws/_mapping?pretty&include_type_name=true "YYRZLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -391,7 +391,7 @@ laws/laws/_mapping?pretty&include_type_name=true "YYRZLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -402,7 +402,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZCWBLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -413,7 +413,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZCWBLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -424,7 +424,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZCXSSRQLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -435,7 +435,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZCXSSRQLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -446,7 +446,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRBMLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -457,7 +457,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRBMLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -468,7 +468,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRBMLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -479,7 +479,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRGCSLAWS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -490,7 +490,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRGCSLAWSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -501,7 +501,7 @@ laws/laws/_mapping?pretty&include_type_name=true "ZRGCSLAWSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -548,7 +548,7 @@ laws/laws/_mapping?pretty&include_type_name=true "content": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -559,7 +559,7 @@ laws/laws/_mapping?pretty&include_type_name=true "country": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -570,7 +570,7 @@ laws/laws/_mapping?pretty&include_type_name=true "countryShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -590,7 +590,7 @@ laws/laws/_mapping?pretty&include_type_name=true "isRelateAccess": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -601,7 +601,7 @@ laws/laws/_mapping?pretty&include_type_name=true "isRelateAccessName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -612,7 +612,7 @@ laws/laws/_mapping?pretty&include_type_name=true "issueCompany": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -643,7 +643,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsBulletin": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -654,7 +654,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsEnName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -665,7 +665,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsLabel": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -676,7 +676,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsLabelName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -687,7 +687,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -698,7 +698,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsNo": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -709,7 +709,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsNotisyncNum": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -729,7 +729,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsRemark": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -740,7 +740,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsSycx": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -751,7 +751,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsSycxName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -762,7 +762,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsSyqy": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -773,7 +773,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsSyqyName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -784,7 +784,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsTextState": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -795,7 +795,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsTextStateName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -806,7 +806,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsType": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -817,7 +817,7 @@ laws/laws/_mapping?pretty&include_type_name=true "lawsTypeName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -856,7 +856,7 @@ laws/laws/_mapping?pretty&include_type_name=true "type": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", diff --git a/doc/es/es 创建索引字段_stand.txt b/doc/es/es 创建索引字段_stand.txt index bb090c75..37d841f7 100644 --- a/doc/es/es 创建索引字段_stand.txt +++ b/doc/es/es 创建索引字段_stand.txt @@ -24,7 +24,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BBFDTBZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -35,7 +35,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BBFDTBZName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -46,7 +46,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BDTBH": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -57,7 +57,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BDTBZH": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -68,7 +68,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BDTBZHName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -79,7 +79,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BFDTBZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -90,7 +90,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BFDTBZName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -101,7 +101,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BPG": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -112,7 +112,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BPGName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -123,7 +123,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BYYBJ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -134,7 +134,7 @@ stand/stand/_mapping?pretty&include_type_name=true "BYYBJName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -145,7 +145,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CA": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -156,7 +156,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CAName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -167,7 +167,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CBBH": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -178,7 +178,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CBBHName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -189,7 +189,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CBCD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -200,7 +200,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CBCDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -211,7 +211,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CBCDShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -222,7 +222,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CHJL": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -233,7 +233,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CHJLName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -244,7 +244,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CLLX": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -255,7 +255,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CLLXName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -266,7 +266,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CLLXShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -277,7 +277,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYCVPPSBM": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -288,7 +288,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYCVPPSBMName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -299,7 +299,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYCVPPSCN": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -310,7 +310,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYCVPPSCNName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -321,7 +321,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYSD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -332,7 +332,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYSDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -343,7 +343,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYSDShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -354,7 +354,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYZBPM": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -365,7 +365,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYZBPMName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -376,7 +376,7 @@ stand/stand/_mapping?pretty&include_type_name=true "CYZBPMShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -387,7 +387,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DTBJH": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -398,7 +398,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DTBJHName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -409,7 +409,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYBXH": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -420,7 +420,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYBXHCAR": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -431,7 +431,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYBXHCARName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -442,7 +442,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYBXHName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -453,7 +453,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYMC": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -464,7 +464,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYMCCAR": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -475,7 +475,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYMCCARName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -486,7 +486,7 @@ stand/stand/_mapping?pretty&include_type_name=true "DYMCName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -497,7 +497,7 @@ stand/stand/_mapping?pretty&include_type_name=true "FBGBJBD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -508,7 +508,7 @@ stand/stand/_mapping?pretty&include_type_name=true "FBGBJBDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -519,7 +519,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GKDW": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -530,7 +530,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GKDWName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -541,7 +541,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GKDWShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -552,7 +552,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GLWJ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -563,7 +563,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GLWJName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -574,7 +574,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GXHBQ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -585,7 +585,7 @@ stand/stand/_mapping?pretty&include_type_name=true "GXHBQName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -596,7 +596,7 @@ stand/stand/_mapping?pretty&include_type_name=true "JDWJ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -607,7 +607,7 @@ stand/stand/_mapping?pretty&include_type_name=true "JDWJName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -618,7 +618,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KCCVPPSBM": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -629,7 +629,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KCCVPPSBMName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -640,7 +640,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KCCVPPSCN": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -651,7 +651,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KCCVPPSCNName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -662,7 +662,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KWJ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -673,7 +673,7 @@ stand/stand/_mapping?pretty&include_type_name=true "KWJName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -684,7 +684,7 @@ stand/stand/_mapping?pretty&include_type_name=true "NYLX": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -695,7 +695,7 @@ stand/stand/_mapping?pretty&include_type_name=true "NYLXName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -706,7 +706,7 @@ stand/stand/_mapping?pretty&include_type_name=true "NYLXShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -717,7 +717,7 @@ stand/stand/_mapping?pretty&include_type_name=true "QCDW": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -728,7 +728,7 @@ stand/stand/_mapping?pretty&include_type_name=true "QCDWName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -739,7 +739,7 @@ stand/stand/_mapping?pretty&include_type_name=true "QCDWShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -750,7 +750,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SSG": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -761,7 +761,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SSGName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -772,7 +772,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SSRQ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -783,7 +783,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SSRQName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -794,7 +794,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYCPX": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -805,7 +805,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYCPXName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -816,7 +816,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYCPXShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -827,7 +827,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYRZ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -838,7 +838,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYRZName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -849,7 +849,7 @@ stand/stand/_mapping?pretty&include_type_name=true "SYRZShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -860,7 +860,7 @@ stand/stand/_mapping?pretty&include_type_name=true "TXLB": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -871,7 +871,7 @@ stand/stand/_mapping?pretty&include_type_name=true "TXLBName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -882,7 +882,7 @@ stand/stand/_mapping?pretty&include_type_name=true "TXLBShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -893,7 +893,7 @@ stand/stand/_mapping?pretty&include_type_name=true "WAS_": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -904,7 +904,7 @@ stand/stand/_mapping?pretty&include_type_name=true "WQW_": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -915,7 +915,7 @@ stand/stand/_mapping?pretty&include_type_name=true "WSSMR": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -926,7 +926,7 @@ stand/stand/_mapping?pretty&include_type_name=true "WSSMRName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -937,7 +937,7 @@ stand/stand/_mapping?pretty&include_type_name=true "WSSMRShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -948,7 +948,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XCXSSRQ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -959,7 +959,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XCXSSRQName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -970,7 +970,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XDB": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -981,7 +981,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XDBName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -992,7 +992,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XGD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1003,7 +1003,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XGDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1014,7 +1014,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XGLC": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1025,7 +1025,7 @@ stand/stand/_mapping?pretty&include_type_name=true "XGLCName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1036,7 +1036,7 @@ stand/stand/_mapping?pretty&include_type_name=true "YYBJ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1047,7 +1047,7 @@ stand/stand/_mapping?pretty&include_type_name=true "YYBJName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1058,7 +1058,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZBJBD": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1069,7 +1069,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZBJBDName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1080,7 +1080,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZCCSSRQ": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1091,7 +1091,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZCCSSRQName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1102,7 +1102,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZQYJG": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1113,7 +1113,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZQYJGName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1124,7 +1124,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRBM": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1135,7 +1135,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRBMName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1146,7 +1146,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRBMShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1157,7 +1157,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRGCS": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1168,7 +1168,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRGCSName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1179,7 +1179,7 @@ stand/stand/_mapping?pretty&include_type_name=true "ZRGCSShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1190,7 +1190,7 @@ stand/stand/_mapping?pretty&include_type_name=true "baseSearchContent": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1201,7 +1201,7 @@ stand/stand/_mapping?pretty&include_type_name=true "content": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1212,7 +1212,7 @@ stand/stand/_mapping?pretty&include_type_name=true "country": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1223,7 +1223,7 @@ stand/stand/_mapping?pretty&include_type_name=true "countryShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1243,7 +1243,7 @@ stand/stand/_mapping?pretty&include_type_name=true "isRelateAccess": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1254,7 +1254,7 @@ stand/stand/_mapping?pretty&include_type_name=true "isRelateAccessName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1294,7 +1294,7 @@ stand/stand/_mapping?pretty&include_type_name=true "mapItems": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1305,7 +1305,7 @@ stand/stand/_mapping?pretty&include_type_name=true "nameshow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1316,7 +1316,7 @@ stand/stand/_mapping?pretty&include_type_name=true "numberExpNull": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1327,7 +1327,7 @@ stand/stand/_mapping?pretty&include_type_name=true "numbershow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1338,7 +1338,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standEnName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1349,7 +1349,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1360,7 +1360,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standNature": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1371,7 +1371,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standNatureName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1382,7 +1382,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standNumber": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1393,7 +1393,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standSort": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1404,7 +1404,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standSortShow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1415,7 +1415,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standSystem": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1426,7 +1426,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standType": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1437,7 +1437,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standYear": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1449,7 +1449,7 @@ stand/stand/_mapping?pretty&include_type_name=true "stand_en_name": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1460,7 +1460,7 @@ stand/stand/_mapping?pretty&include_type_name=true "stand_name": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1471,7 +1471,7 @@ stand/stand/_mapping?pretty&include_type_name=true "stand_number": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1482,7 +1482,7 @@ stand/stand/_mapping?pretty&include_type_name=true "stand_sort": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1493,7 +1493,7 @@ stand/stand/_mapping?pretty&include_type_name=true "stand_year": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1504,7 +1504,7 @@ stand/stand/_mapping?pretty&include_type_name=true "standstateshow": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1515,7 +1515,7 @@ stand/stand/_mapping?pretty&include_type_name=true "synopsis": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1526,7 +1526,7 @@ stand/stand/_mapping?pretty&include_type_name=true "textStatus": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1537,7 +1537,7 @@ stand/stand/_mapping?pretty&include_type_name=true "textStatusName": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", @@ -1548,7 +1548,7 @@ stand/stand/_mapping?pretty&include_type_name=true "type": { "type": "text", "analyzer": "ik_max_word", - "search_analyzer": "ik_smart", + "search_analyzer": "ik_max_word", "fields": { "keyword": { "type": "keyword", From 6d64ae63aa9388be39ad7822a6984bf18a563dde Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 19 May 2022 09:38:39 +0800 Subject: [PATCH 3/6] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20bug?= =?UTF-8?q?=20#52771=20=E5=8E=BB=E6=8E=89=E9=87=8D=E5=A4=8D=E6=95=88?= =?UTF-8?q?=E9=AA=8C=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/EsRevisePlanServiceImpl.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java index 1b6e05c4..36a499a6 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java @@ -66,13 +66,8 @@ public class EsRevisePlanServiceImpl extends ServiceImpl esRevisePlans=esRevisePlanDao.selectPageByName(esRevisePlan); - if (esRevisePlans.size()>0){ - return "企标名称不能重复,请更换新的企标名称。"; - }else { - esRevisePlanDao.updateOne(esRevisePlan); - return "操作成功"; - } + esRevisePlanDao.updateOne(esRevisePlan); + return "操作成功"; } @Override From 8d23ba91624181d64ce4eca6cfad785f67a88d40 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 19 May 2022 10:08:58 +0800 Subject: [PATCH 4/6] feat: There is no way the, rest --- .../service/impl/EsRevisePlanServiceImpl.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java index 36a499a6..1b6e05c4 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java @@ -66,8 +66,13 @@ public class EsRevisePlanServiceImpl extends ServiceImpl esRevisePlans=esRevisePlanDao.selectPageByName(esRevisePlan); + if (esRevisePlans.size()>0){ + return "企标名称不能重复,请更换新的企标名称。"; + }else { + esRevisePlanDao.updateOne(esRevisePlan); + return "操作成功"; + } } @Override From 65f688b3322b979e5d257ea8c046f49045773e98 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 19 May 2022 12:36:09 +0800 Subject: [PATCH 5/6] feat: There is no way the, --- .../esRevisePlan/controller/EsRevisePlanController.java | 6 ++++++ .../da/slrs/esRevisePlan/service/IEsRevisePlanService.java | 1 + .../esRevisePlan/service/impl/EsRevisePlanServiceImpl.java | 6 ++++++ 3 files changed, 13 insertions(+) diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java index 5b6ecc54..3457c5f9 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java @@ -66,6 +66,12 @@ public class EsRevisePlanController extends BaseController { return Result.success(iEsRevisePlanService.modPlan(esRevisePlan)); } + @ApiOperation(value = "编辑企标计划-企标产品更新计划状态") + @PostMapping("modPlanByState") + public ResponseMessage modPlanByState(EsRevisePlan esRevisePlan){ + return Result.success(iEsRevisePlanService.modPlanByState(esRevisePlan)); + } + @ApiOperation(value = "编辑企标计划") @PostMapping("/modPlanByWk") public ResponseMessage modPlanByWk(@RequestBody EsRevisePlan esRevisePlan){ diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/IEsRevisePlanService.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/IEsRevisePlanService.java index 62c17fcf..18c37c40 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/IEsRevisePlanService.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/IEsRevisePlanService.java @@ -19,6 +19,7 @@ public interface IEsRevisePlanService extends IService { EsRevisePlan getOnePlan(String id);//查询详情 String modPlan(EsRevisePlan esRevisePlan);//编辑 + String modPlanByState(EsRevisePlan esRevisePlan);//编辑 String addPlan(EsRevisePlan esRevisePlan);//插入 int delPlan(String id);//删除 int delPlans(String ids);//批量删除 diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java index 1b6e05c4..de098d04 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/service/impl/EsRevisePlanServiceImpl.java @@ -75,6 +75,12 @@ public class EsRevisePlanServiceImpl extends ServiceImpl Date: Thu, 19 May 2022 12:36:43 +0800 Subject: [PATCH 6/6] feat: There is no way the, --- .../da/slrs/esRevisePlan/controller/EsRevisePlanController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java index 3457c5f9..0bfc5a1f 100644 --- a/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java +++ b/adc-da-slrs/src/main/java/com/adc/da/slrs/esRevisePlan/controller/EsRevisePlanController.java @@ -66,7 +66,7 @@ public class EsRevisePlanController extends BaseController { return Result.success(iEsRevisePlanService.modPlan(esRevisePlan)); } - @ApiOperation(value = "编辑企标计划-企标产品更新计划状态") + @ApiOperation(value = "编辑企标计划-企标技术更新计划状态") @PostMapping("modPlanByState") public ResponseMessage modPlanByState(EsRevisePlan esRevisePlan){ return Result.success(iEsRevisePlanService.modPlanByState(esRevisePlan));