|
@@ -1,470 +1,398 @@
|
|
-curl -XPUT http://127.0.0.1:19800/oprd_projectset_v1 -d '{
|
|
|
|
|
|
+curl -XPUT http://127.0.0.1:19805/oprd_projectset_v1 -u es_all:TopJkO2E_d1x -H 'content-Type:application/json' -d '{
|
|
"settings": {
|
|
"settings": {
|
|
- "index": {
|
|
|
|
- "search": {
|
|
|
|
- "showlog": {
|
|
|
|
- "threshold": {
|
|
|
|
- "query": {
|
|
|
|
- "trace": "100ms"
|
|
|
|
- },
|
|
|
|
- "fetch": {
|
|
|
|
- "tract": "100ms"
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ "analysis": {
|
|
|
|
+ "analyzer": {
|
|
|
|
+ "my_ngram_title": {
|
|
|
|
+ "filter": [
|
|
|
|
+ "lowercase"
|
|
|
|
+ ],
|
|
|
|
+ "tokenizer": "my_ngram_title"
|
|
|
|
+ },
|
|
|
|
+ "douhao": {
|
|
|
|
+ "type": "pattern",
|
|
|
|
+ "pattern": ","
|
|
|
|
+ },
|
|
|
|
+ "my_ngram": {
|
|
|
|
+ "filter": [
|
|
|
|
+ "lowercase"
|
|
|
|
+ ],
|
|
|
|
+ "tokenizer": "my_ngram"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- "analysis": {
|
|
|
|
- "analyzer": {
|
|
|
|
- "douhao": {
|
|
|
|
- "type": "pattern",
|
|
|
|
- "pattern": ","
|
|
|
|
- },
|
|
|
|
- "my_ngram": {
|
|
|
|
- "filter": [
|
|
|
|
- "lowercase"
|
|
|
|
- ],
|
|
|
|
- "tokenizer": "my_ngram"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- "tokenizer": {
|
|
|
|
- "my_ngram": {
|
|
|
|
- "token_chars": [
|
|
|
|
- "letter",
|
|
|
|
- "digit"
|
|
|
|
- ],
|
|
|
|
- "min_gram": "2",
|
|
|
|
- "type": "nGram",
|
|
|
|
- "max_gram": "2"
|
|
|
|
- }
|
|
|
|
|
|
+ "tokenizer": {
|
|
|
|
+ "my_ngram_title": {
|
|
|
|
+ "token_chars": [
|
|
|
|
+ "letter",
|
|
|
|
+ "digit",
|
|
|
|
+ "punctuation",
|
|
|
|
+ "symbol"
|
|
|
|
+ ],
|
|
|
|
+ "min_gram": "1",
|
|
|
|
+ "type": "nGram",
|
|
|
|
+ "max_gram": "1"
|
|
|
|
+ },
|
|
|
|
+ "my_ngram": {
|
|
|
|
+ "token_chars": [
|
|
|
|
+ "letter",
|
|
|
|
+ "digit"
|
|
|
|
+ ],
|
|
|
|
+ "min_gram": "2",
|
|
|
|
+ "type": "nGram",
|
|
|
|
+ "max_gram": "2"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "number_of_shards": "20",
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "index": {
|
|
|
|
+ "number_of_shards": "12",
|
|
"number_of_replicas": "0"
|
|
"number_of_replicas": "0"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
"mappings": {
|
|
"mappings": {
|
|
- "projectset": {
|
|
|
|
- "transform": {
|
|
|
|
- "lang": "groovy",
|
|
|
|
- "script": "ctx._source[\"id\"] = ctx._source[\"_id\"]"
|
|
|
|
|
|
+ "dynamic": false,
|
|
|
|
+ "properties": {
|
|
|
|
+ "exception": {
|
|
|
|
+ "type": "integer"
|
|
},
|
|
},
|
|
- "_id": {
|
|
|
|
- "path": "_id"
|
|
|
|
|
|
+ "projecthref": {
|
|
|
|
+ "type": "keyword"
|
|
},
|
|
},
|
|
- "_all": {
|
|
|
|
- "enabled": false
|
|
|
|
|
|
+ "firsttime": {
|
|
|
|
+ "type": "long"
|
|
},
|
|
},
|
|
- "properties": {
|
|
|
|
- "exception": {
|
|
|
|
- "type": "integer"
|
|
|
|
- },
|
|
|
|
- "projecthref": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "firsttime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "city": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "projectcode": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "jgtime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "projectscope": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "multipackage": {
|
|
|
|
- "type": "integer"
|
|
|
|
- },
|
|
|
|
- "subscopeclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "contractcode": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "sortprice": {
|
|
|
|
- "type": "double"
|
|
|
|
- },
|
|
|
|
- "s_projectname": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "sourceinfourl": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "id": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "budget": {
|
|
|
|
- "type": "double"
|
|
|
|
- },
|
|
|
|
- "s_subscopeclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "area": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "budgettag": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "mpc": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "bidamount": {
|
|
|
|
- "type": "double"
|
|
|
|
- },
|
|
|
|
- "createtime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "projectname": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string",
|
|
|
|
- "fields": {
|
|
|
|
- "pname": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- }
|
|
|
|
|
|
+ "city": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "projectcode": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "jgtime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "projectscope": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "multipackage": {
|
|
|
|
+ "type": "integer"
|
|
|
|
+ },
|
|
|
|
+ "subscopeclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "contractcode": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "sortprice": {
|
|
|
|
+ "type": "double"
|
|
|
|
+ },
|
|
|
|
+ "s_projectname": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "sourceinfourl": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "id": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "budget": {
|
|
|
|
+ "type": "double"
|
|
|
|
+ },
|
|
|
|
+ "s_subscopeclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "area": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "budgettag": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "mpc": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "bidamount": {
|
|
|
|
+ "type": "double"
|
|
|
|
+ },
|
|
|
|
+ "createtime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "projectname": {
|
|
|
|
+ "type": "keyword",
|
|
|
|
+ "fields": {
|
|
|
|
+ "pname": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
|
|
+ },
|
|
|
|
+ "sname": {
|
|
|
|
+ "analyzer": "my_ngram_title",
|
|
|
|
+ "type": "text"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "buyertel": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "listtag": {
|
|
|
|
- "type": "integer"
|
|
|
|
- },
|
|
|
|
- "bidstatus": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "s_winner": {
|
|
|
|
- "analyzer": "douhao",
|
|
|
|
- "type": "string",
|
|
|
|
- "fields": {
|
|
|
|
- "mwinner": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "buyertel": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "listtag": {
|
|
|
|
+ "type": "integer"
|
|
|
|
+ },
|
|
|
|
+ "bidstatus": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "s_winner": {
|
|
|
|
+ "analyzer": "douhao",
|
|
|
|
+ "type": "text",
|
|
|
|
+ "fields": {
|
|
|
|
+ "mwinner": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "agency": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string",
|
|
|
|
- "fields": {
|
|
|
|
- "magency": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "agency": {
|
|
|
|
+ "type": "keyword",
|
|
|
|
+ "fields": {
|
|
|
|
+ "magency": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "buyer": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string",
|
|
|
|
- "fields": {
|
|
|
|
- "mbuyer": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "buyer": {
|
|
|
|
+ "type": "keyword",
|
|
|
|
+ "fields": {
|
|
|
|
+ "mbuyer": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "bidamounttag": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "mpn": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "package1": {
|
|
|
|
- "properties": {
|
|
|
|
- "bidamount": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "winner": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "bidamounttag": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "mpn": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "package1": {
|
|
|
|
+ "properties": {
|
|
|
|
+ "bidamount": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "winner": {
|
|
|
|
+ "type": "keyword"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "pici": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "list": {
|
|
|
|
- "properties": {
|
|
|
|
- "city": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "projectcode": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "projectscope": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "multipackage": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "title": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "subscopeclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "comeintime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "contractcode": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "toptype": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "spidercode": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "subtype": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "infoformat": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "href": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "pjVal": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "budget": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "area": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "bidamount": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "projectname": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyertel": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "infoid": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "agency": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "compareStr": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "bidstatus": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "s_winner": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "resVal": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "buyer": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyerclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "site": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winner": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winnertel": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winnerperson": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "bidopentime": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "district": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "publishtime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "topscopeclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyerperson": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "project_startdate": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "project_completedate": {
|
|
|
|
- "type": "long"
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "pici": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "list": {
|
|
|
|
+ "properties": {
|
|
|
|
+ "city": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "projectcode": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "multipackage": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "title": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "subscopeclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "comeintime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "contractcode": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "toptype": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "spidercode": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "subtype": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "infoformat": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "href": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "pjVal": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "budget": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "area": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "bidamount": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "projectname": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "buyertel": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "infoid": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "agency": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "compareStr": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "s_winner": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "resVal": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "buyer": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "buyerclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "site": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "winner": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "winnertel": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "winnerperson": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "bidopentime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "district": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "publishtime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "topscopeclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "buyerperson": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "project_startdate": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "project_completedate": {
|
|
|
|
+ "type": "long"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- "bidtype": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyerclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "sourceinfoid": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "lasttime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "winner": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winnertel": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winnerperson": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "bidopentime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "district": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "extractpos": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "ids": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "project_rate": {
|
|
|
|
- "type": "double"
|
|
|
|
- },
|
|
|
|
- "topscopeclass": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyerperson": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "zbtime": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "purchasing": {
|
|
|
|
- "type": "string",
|
|
|
|
- "analyzer": "my_ngram"
|
|
|
|
- },
|
|
|
|
- "review_experts": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "winnerorder": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "prate_flag": {
|
|
|
|
- "type": "integer"
|
|
|
|
- },
|
|
|
|
- "bidcycle": {
|
|
|
|
- "type": "integer"
|
|
|
|
- },
|
|
|
|
- "project_startdate": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "project_scale": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "project_duration": {
|
|
|
|
- "type": "long"
|
|
|
|
- },
|
|
|
|
- "project_timeunit": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "payway": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "contract_guarantee": {
|
|
|
|
- "type": "boolean"
|
|
|
|
- },
|
|
|
|
- "bid_guarantee": {
|
|
|
|
- "type": "boolean"
|
|
|
|
- },
|
|
|
|
- "qualifies": {
|
|
|
|
- "analyzer": "my_ngram",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "tag_rule": {
|
|
|
|
- "analyzer": "douhao",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "isOperators": {
|
|
|
|
- "type": "boolean"
|
|
|
|
- },
|
|
|
|
- "entidlist": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
- },
|
|
|
|
- "buyertagname": {
|
|
|
|
- "index": "not_analyzed",
|
|
|
|
- "type": "string"
|
|
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ "bidtype": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "buyerclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "sourceinfoid": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "lasttime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "winner": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "winnertel": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "winnerperson": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "bidopentime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "district": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "ids": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "project_rate": {
|
|
|
|
+ "type": "double"
|
|
|
|
+ },
|
|
|
|
+ "topscopeclass": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "buyerperson": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "zbtime": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "purchasing": {
|
|
|
|
+ "type": "text",
|
|
|
|
+ "analyzer": "my_ngram"
|
|
|
|
+ },
|
|
|
|
+ "review_experts": {
|
|
|
|
+ "type": "text"
|
|
|
|
+ },
|
|
|
|
+ "winnerorder": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "prate_flag": {
|
|
|
|
+ "type": "integer"
|
|
|
|
+ },
|
|
|
|
+ "bidcycle": {
|
|
|
|
+ "type": "integer"
|
|
|
|
+ },
|
|
|
|
+ "project_startdate": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "project_completedate": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "project_scale": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
|
|
+ },
|
|
|
|
+ "project_duration": {
|
|
|
|
+ "type": "long"
|
|
|
|
+ },
|
|
|
|
+ "project_timeunit": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "payway": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "contract_guarantee": {
|
|
|
|
+ "type": "boolean"
|
|
|
|
+ },
|
|
|
|
+ "bid_guarantee": {
|
|
|
|
+ "type": "boolean"
|
|
|
|
+ },
|
|
|
|
+ "qualifies": {
|
|
|
|
+ "analyzer": "my_ngram",
|
|
|
|
+ "type": "text"
|
|
|
|
+ },
|
|
|
|
+ "entidlist": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "first_cooperation": {
|
|
|
|
+ "type": "keyword"
|
|
|
|
+ },
|
|
|
|
+ "bid_field": {
|
|
|
|
+ "analyzer": "douhao",
|
|
|
|
+ "type": "text"
|
|
|
|
+ },
|
|
|
|
+ "buyertagname": {
|
|
|
|
+ "type": "keyword"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|