From 5c4e89cbc77552767f7efe40b65e829a9dde0622 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Tue, 31 May 2022 13:58:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20=20es=20?= =?UTF-8?q?=E6=A0=87=E5=87=86=E8=B5=84=E6=BA=90=E6=9F=A5=E8=AF=A2=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20=E6=A3=80=E7=B4=A2=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/SearchCenterServiceImpl.java | 90 +- doc/es/es 创建索引字段_bussioness.txt | 2068 ++++++------ doc/es/es 创建索引字段_laws.txt | 1606 +++++----- doc/es/es 创建索引字段_stand.txt | 2855 ++++++++--------- 4 files changed, 3015 insertions(+), 3604 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 478c64de..9adcd241 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 @@ -209,26 +209,41 @@ public class SearchCenterServiceImpl implements SearchCenterService { updateIndex(searchInfoEO.getSelectIndex()); String sortField = ""; + String sortField1 = ""; + String sortField2 = ""; + String sortField3 = ""; if("laws".equals(searchInfoEO.getSelectIndex())){ sortField = "lawsYear"; + sortField1 = "lawsType"; + sortField2 = "lawsNumber"; + sortField3 = "lawsType.keyword"; }else { sortField = "standYear"; + sortField1 = "standSort"; + sortField2 = "standNumber"; + sortField3 = "standSort.keyword"; } searchRequestBuilder = client.prepareSearch(searchInfoEO.getSelectIndex()) .setSearchType(SearchType.DFS_QUERY_THEN_FETCH) .setFrom((searchInfoEO.getPage()-1)*searchInfoEO.getPageSize()) + .addSort(sortField1, SortOrder.ASC) + .addSort(sortField2, SortOrder.ASC) .addSort(sortField, SortOrder.DESC) + .addSort(sortField3, SortOrder.ASC) .addSort("issue_time_data", SortOrder.DESC) .setSize(searchInfoEO.getPageSize()); - if(searchInfoEO.getSelectIndex().equals("stand")) { - boolQueryShould = queryStandMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); - } else if(searchInfoEO.getSelectIndex().equals("laws")){ - boolQueryShould = queryLawsMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); - } else if(searchInfoEO.getSelectIndex().equals("bussstand")){ - boolQueryShould = queryBussStandMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); + if(StringUtils.isNotBlank(searchInfoEO.getSelectType()) && !"titleSearch".equals(searchInfoEO.getSelectType())) { + if(searchInfoEO.getSelectIndex().equals("stand")) { + boolQueryShould = queryStandMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); + } else if(searchInfoEO.getSelectIndex().equals("laws")){ + boolQueryShould = queryLawsMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); + } else if(searchInfoEO.getSelectIndex().equals("bussstand")){ + boolQueryShould = queryBussStandMsg(searchInfoEO,boolQueryMust,searchRequestBuilder); + } } + if(StringUtils.isNotEmpty(searchInfoEO.getSelectValue()) && StringUtils.isBlank(searchInfoEO.getIsHigh())){ QueryBuilder multiQueryBuilder; switch (searchInfoEO.getSelectIndex()){ @@ -323,40 +338,16 @@ public class SearchCenterServiceImpl implements SearchCenterService { } boolQueryBuilder.must(boolQueryShould); }else { + if ("stand".equals(searchInfoEO.getSelectIndex()) && StringUtils.isNotBlank(searchInfoEO.getStandType())) { + boolQueryBuilder.must(QueryBuilders.wildcardQuery("standType.keyword", "*"+searchInfoEO.getStandType()+"*")); + } boolQueryBuilder.must(boolQueryShould); } //在结果中检索 if (StringUtils.isNotEmpty(searchInfoEO.getSelectValue()) && !isRqFormat(searchInfoEO.getSelectValue())) { QueryBuilder multiQuery = queryInResult(searchInfoEO); - BoolQueryBuilder boolSelectValue = new BoolQueryBuilder(); - boolSelectValue.should(multiQuery); - switch (searchInfoEO.getSelectIndex()){ - case "stand": - boolSelectValue - .should(QueryBuilders.wildcardQuery("standSort.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1005f)) - .should(QueryBuilders.wildcardQuery("standNumber.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1003f)) - .should(QueryBuilders.wildcardQuery("standYear.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1002f)) - .should(QueryBuilders.wildcardQuery("stand_name.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1000f)); - break; - case "laws": - boolSelectValue - .should(QueryBuilders.wildcardQuery("lawsType.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1005f)) - .should(QueryBuilders.wildcardQuery("lawsNumber.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1003f)) - .should(QueryBuilders.wildcardQuery("lawsYear.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1002f)) - .should(QueryBuilders.wildcardQuery("lawsName.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1001f)); - - break; - case "bussstand": - boolSelectValue - .should(QueryBuilders.wildcardQuery("standSort.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1005f)) - .should(QueryBuilders.wildcardQuery("standNumber.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1003f)) - .should(QueryBuilders.wildcardQuery("standYear.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1002f)) - .should(QueryBuilders.wildcardQuery("stand_name.keyword", "*" + searchInfoEO.getSelectValue().toUpperCase() + "*").boost(1000f)); - break; - default: break; - } - boolQueryBuilder.must(boolSelectValue); + boolQueryBuilder.must(multiQuery); } searchRequestBuilder.setQuery(boolQueryBuilder).setTrackTotalHits(true); @@ -798,14 +789,23 @@ public class SearchCenterServiceImpl implements SearchCenterService { BoolQueryBuilder boolQueryBuilder = new BoolQueryBuilder(); List fieldList = getStringField(searchInfoEO); List fieldNameList = new ArrayList<>(); - String[] standStr = {"content","standEnName","standNatureName", - "textStatusName","isRelateAccessName","numbershow","standSystem","NYLXCLASS","CLLX"}; - String[] lawsStr = {"content","lawsEnName","lawsNo","issueCompany","lawsTextState","lawsSyqy","lawsSycx","isRelateAccess","lawsNotisyncNum","lawsBulletin","lawsLabel","lawsRemark"}; - String[] bussstandStr = {"content","stand_code","standEnName","nameshow","standstateshow","numbershow","textStatusBuss","textStatusBussName","NYLXCLASS","CLLX"}; - for (String field : fieldList) { - // 关键字查询属性字段 - String keyWordField2 = field + "Name"; - fieldNameList.add(keyWordField2); + String[] standStr = null; + String[] lawsStr = null; + String[] bussstandStr = null; + if (StringUtils.isNotBlank(searchInfoEO.getSelectType()) && "titleSearch".equals(searchInfoEO.getSelectType())){ + standStr = new String[]{"numbershow","nameshow"}; + lawsStr = new String[]{"lawsNo","lawsName"}; + bussstandStr = new String[]{"numbershow","nameshow"}; + }else { + standStr = new String[]{"content", "standEnName", "standNatureName", + "textStatusName", "isRelateAccessName", "numbershow","nameshow", "standSystem", "NYLXCLASS", "CLLX"}; + lawsStr = new String[]{"content", "lawsEnName","lawsName", "lawsNo", "issueCompany", "lawsTextState", "lawsSyqy", "lawsSycx", "isRelateAccess", "lawsNotisyncNum", "lawsBulletin", "lawsLabel", "lawsRemark"}; + bussstandStr = new String[]{"content", "stand_code", "standEnName", "nameshow", "standstateshow", "numbershow", "textStatusBuss", "textStatusBussName", "NYLXCLASS", "CLLX"}; + for (String field : fieldList) { + // 关键字查询属性字段 + String keyWordField2 = field + "Name"; + fieldNameList.add(keyWordField2); + } } switch (searchInfoEO.getSelectIndex()){ case "stand": @@ -813,7 +813,7 @@ public class SearchCenterServiceImpl implements SearchCenterService { listStrings.addAll(fieldNameList); String[] fieldArr = listStrings.stream().toArray(String[]::new); multiQueryBuilder = QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(),fieldArr - ).minimumShouldMatch("100%").boost(1L); + ).minimumShouldMatch("100%").field("numbershow",1001f).field("nameshow",1000f); // boolQueryBuilder.should(); // for (String field : fieldList) { // // 关键字查询属性字段 @@ -826,14 +826,14 @@ public class SearchCenterServiceImpl implements SearchCenterService { listStringLaws.addAll(fieldNameList); String[] fieldLawsArr = listStringLaws.stream().toArray(String[]::new); multiQueryBuilder = QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(),fieldLawsArr - ).minimumShouldMatch("100%").boost(1L); + ).minimumShouldMatch("100%").field("lawsNo",1001f).field("lawsName",1000f); break; case "bussstand": List listStringBussstand = Stream.of(bussstandStr).collect(Collectors.toList()); listStringBussstand.addAll(fieldNameList); String[] fieldBussstandArr = listStringBussstand.stream().toArray(String[]::new); multiQueryBuilder = QueryBuilders.multiMatchQuery(searchInfoEO.getSelectValue(),fieldBussstandArr - ).minimumShouldMatch("100%").boost(1L); + ).minimumShouldMatch("100%").field("numbershow",1001f).field("nameshow",1000f); break; default: break; } diff --git a/doc/es/es 创建索引字段_bussioness.txt b/doc/es/es 创建索引字段_bussioness.txt index 99dc28a6..f30467a1 100644 --- a/doc/es/es 创建索引字段_bussioness.txt +++ b/doc/es/es 创建索引字段_bussioness.txt @@ -4,1130 +4,946 @@ bussstand/bussstand/_mapping?pretty&include_type_name=true "bussstand": { "properties": { "BARQ": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BARQName": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTQBBHBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTQBBHBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BZSMBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BZSMBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CDZD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CSZD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYBZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYBZName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCDYBXHBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCDYBXHBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCDYMCBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCDYMCBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSBMBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSBMBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSCNBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSCNBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTQBBHBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTQBBHBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXHBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXHBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMCBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMCBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FBGBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FBGBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FSRQBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FSRQBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FZRQBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FZRQBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCVPPSBMBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCVPPSBMBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCVPPSCNBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCVPPSCNBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "LSBBBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "LSBBBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXCLASS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXCLASSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDW": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDWName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDWShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCRBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCRBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QTWJBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QTWJBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "STAND_ID": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCPXCLASS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCPXCLASSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCXCLASS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCXCLASSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TXLBBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TXLBBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "VPPSBMBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "VPPSBMBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "VPPSCNBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "VPPSCNBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WJSCRYBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WJSCRYBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCSJBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCSJBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGJLBUSS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGJLBUSSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLC": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLCName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBZName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZFCDXZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "content": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "country": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "id": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "issueTime": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "issue_time_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "nameshow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "numberExpNull": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "numbershow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "putTime": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "put_time_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "replaceStandNum": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "replace_stand_num": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "replacedStandNum": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "replaced_stand_num": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standEnName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standNumber": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standSort": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standSortShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standYear": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "stand_code": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_en_name": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_name": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_sort": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_status": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_year": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standstateshow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "statecode": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "textStatusBuss": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "textStatusBussName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "type": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "validFlag": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - } - } - } + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BARQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTQBBHBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTQBBHBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BZSMBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BZSMBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CDZD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CSZD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYBZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYBZName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCDYBXHBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCDYBXHBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCDYMCBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCDYMCBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSBMBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSBMBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSCNBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSCNBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTQBBHBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTQBBHBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXHBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXHBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMCBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMCBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FBGBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FBGBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FSRQBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FSRQBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FZRQBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FZRQBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCVPPSBMBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCVPPSBMBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCVPPSCNBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCVPPSCNBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "LSBBBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "LSBBBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXCLASS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXCLASSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDW": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDWName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDWShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCRBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCRBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QTWJBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QTWJBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "STAND_ID": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCPXCLASS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCPXCLASSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCXCLASS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCXCLASSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TXLBBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TXLBBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "VPPSBMBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "VPPSBMBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "VPPSCNBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "VPPSCNBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WJSCRYBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WJSCRYBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCSJBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCSJBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGJLBUSS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGJLBUSSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLC": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLCName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBZName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZFCDXZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "content": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "country": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "id": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "issueTime": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "issue_time_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "nameshow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "numberExpNull": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "numbershow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "putTime": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "put_time_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "replaceStandNum": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "replace_stand_num": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "replacedStandNum": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "replaced_stand_num": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standEnName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standNumber": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "standSort": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "standSortShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standYear": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "stand_code": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_en_name": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_name": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_sort": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_status": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_year": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standstateshow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "statecode": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "textStatusBuss": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "textStatusBussName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "type": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "validFlag": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + } } \ No newline at end of file diff --git a/doc/es/es 创建索引字段_laws.txt b/doc/es/es 创建索引字段_laws.txt index a42eb50d..5653e811 100644 --- a/doc/es/es 创建索引字段_laws.txt +++ b/doc/es/es 创建索引字段_laws.txt @@ -3,876 +3,740 @@ laws/laws/_mapping?pretty&include_type_name=true { "laws": { "properties": { - "BDTWJHLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTWJHLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CHJLLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CHJLLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSDLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSDLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSDLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTWJHLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTWJHLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FBJGLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GCWBLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GCWBLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "JDWJLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "JDWJLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSRQLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSRQLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGDWLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGDWLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGDWLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGRLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGRLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TGRLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCXSSRQLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCXSSRQLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLC": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLCName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBZZCLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBZZCLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYRZLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYRZLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYRZLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCWBLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCWBLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCXSSRQLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCXSSRQLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBMLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBMLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBMLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCSLAWS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCSLAWSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCSLAWSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "commentCycleEnd": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "commentCycleEnd_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "commentCycleStart": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "commentCycleStart_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "content": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "country": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "countryShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "id": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "isRelateAccess": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "isRelateAccessName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "issueCompany": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "issueTime": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "issue_time_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "lawsBulletin": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsEnName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsLabel": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsLabelName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsNo": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsNotisyncNum": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsNumber": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsRemark": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsSycx": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsSycxName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsSyqy": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsSyqyName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsTextState": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsTextStateName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsType": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsTypeName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "lawsYear": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "lawsYearName": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standType": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "type": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "validFlag": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - } - } + "BDTWJHLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTWJHLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CHJLLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CHJLLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSDLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSDLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSDLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTWJHLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTWJHLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FBJGLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GCWBLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GCWBLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "JDWJLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "JDWJLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSRQLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSRQLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGDWLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGDWLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGDWLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGRLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGRLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TGRLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCXSSRQLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCXSSRQLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLC": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLCName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBZZCLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBZZCLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYRZLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYRZLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYRZLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCWBLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCWBLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCXSSRQLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCXSSRQLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBMLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBMLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBMLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCSLAWS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCSLAWSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCSLAWSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "commentCycleEnd": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "commentCycleEnd_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "commentCycleStart": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "commentCycleStart_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "content": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "country": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "countryShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "id": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "isRelateAccess": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "isRelateAccessName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "issueCompany": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "issueTime": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "issue_time_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "lawsBulletin": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsEnName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsLabel": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsLabelName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsNo": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsNotisyncNum": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsNumber": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "lawsRemark": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsSycx": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsSycxName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsSyqy": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsSyqyName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsTextState": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsTextStateName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsType": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "lawsTypeName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "lawsYear": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "lawsYearName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standType": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "type": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "validFlag": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } } } \ No newline at end of file diff --git a/doc/es/es 创建索引字段_stand.txt b/doc/es/es 创建索引字段_stand.txt index 37d841f7..99f3410e 100644 --- a/doc/es/es 创建索引字段_stand.txt +++ b/doc/es/es 创建索引字段_stand.txt @@ -3,1568 +3,1299 @@ stand/stand/_mapping?pretty&include_type_name=true { "stand": { "properties": { - "BARQ": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BARQName": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BBFDTBZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BBFDTBZName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTBH": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTBZH": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BDTBZHName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BFDTBZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BFDTBZName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BPG": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BPGName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BYYBJ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "BYYBJName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CA": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CAName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CBBH": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CBBHName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CBCD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CBCDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CBCDShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CHJL": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CHJLName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CLLX": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CLLXName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CLLXShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSBM": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSBMName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSCN": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYCVPPSCNName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYSDShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYZBPM": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYZBPMName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "CYZBPMShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTBJH": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DTBJHName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXH": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXHCAR": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXHCARName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYBXHName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMC": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMCCAR": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMCCARName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "DYMCName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FBGBJBD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "FBGBJBDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GKDW": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GKDWName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GKDWShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GLWJName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GXHBQ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "GXHBQName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "JDWJ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "JDWJName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCCVPPSBM": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCCVPPSBMName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCCVPPSCN": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KCCVPPSCNName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KWJ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "KWJName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLX": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "NYLXShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDW": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDWName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "QCDWShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSG": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSGName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSRQ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SSRQName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCPX": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCPXName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYCPXShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYRZ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYRZName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "SYRZShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TXLB": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TXLBName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "TXLBShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WAS_": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WQW_": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WSSMR": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WSSMRName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "WSSMRShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCXSSRQ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XCXSSRQName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XDB": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XDBName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLC": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "XGLCName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBJ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "YYBJName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZBJBD": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZBJBDName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCCSSRQ": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZCCSSRQName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZQYJG": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZQYJGName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBM": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBMName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRBMShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCS": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCSName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "ZRGCSShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "baseSearchContent": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "content": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "country": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "countryShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "id": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "isRelateAccess": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "isRelateAccessName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "issueTime": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "issue_time_data": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "itemExistList": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "mapItems": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "nameshow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "numberExpNull": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "numbershow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standEnName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standNature": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standNatureName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standNumber": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standSort": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standSortShow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standSystem": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standType": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standYear": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - }, - "fielddata": true - }, - "stand_en_name": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_name": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_number": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_sort": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "stand_year": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "standstateshow": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "synopsis": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "textStatus": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "textStatusName": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "type": { - "type": "text", - "analyzer": "ik_max_word", - "search_analyzer": "ik_max_word", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - }, - "validFlag": { - "type": "text", - "fields": { - "keyword": { - "type": "keyword", - "ignore_above": 256 - } - } - } + "BARQ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BARQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BBFDTBZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BBFDTBZName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTBH": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTBZH": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BDTBZHName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BFDTBZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BFDTBZName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BPG": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BPGName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BYYBJ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "BYYBJName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CA": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CAName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CBBH": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CBBHName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CBCD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CBCDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CBCDShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CHJL": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CHJLName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CLLX": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CLLXName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CLLXShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSBM": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSBMName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSCN": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYCVPPSCNName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYSDShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYZBPM": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYZBPMName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "CYZBPMShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTBJH": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DTBJHName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXH": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXHCAR": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXHCARName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYBXHName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMC": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMCCAR": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMCCARName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "DYMCName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FBGBJBD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "FBGBJBDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GKDW": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GKDWName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GKDWShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GLWJName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GXHBQ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "GXHBQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "JDWJ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "JDWJName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCCVPPSBM": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCCVPPSBMName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCCVPPSCN": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KCCVPPSCNName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KWJ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "KWJName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLX": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "NYLXShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDW": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDWName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "QCDWShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSG": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSGName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSRQ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SSRQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCPX": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCPXName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYCPXShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYRZ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYRZName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "SYRZShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TXLB": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TXLBName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "TXLBShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WAS_": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WQW_": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WSSMR": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WSSMRName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "WSSMRShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCXSSRQ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XCXSSRQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XDB": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XDBName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLC": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "XGLCName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBJ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "YYBJName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZBJBD": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZBJBDName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCCSSRQ": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZCCSSRQName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZQYJG": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZQYJGName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBM": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBMName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRBMShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCS": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCSName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ZRGCSShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "baseSearchContent": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "content": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "country": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "countryShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "id": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "isRelateAccess": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "isRelateAccessName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "issueTime": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "issue_time_data": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "itemExistList": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "mapItems": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "nameshow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "numberExpNull": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "numbershow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standEnName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standNature": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standNatureName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standNumber": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "standSort": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "standSortShow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standSystem": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standType": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standYear": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + }, + "fielddata": true + }, + "stand_en_name": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_name": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_number": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_sort": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "stand_year": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "standstateshow": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "synopsis": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "textStatus": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "textStatusName": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "type": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "validFlag": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } }