mirror of
https://github.com/201206030/novel-plus.git
synced 2025-04-27 01:30:51 +00:00
77 lines
1.2 KiB
Plaintext
77 lines
1.2 KiB
Plaintext
PUT /novel
|
|
{
|
|
"mappings" : {
|
|
"book" : {
|
|
"properties" : {
|
|
"id" : {
|
|
"type" : "long"
|
|
},
|
|
"authorId" : {
|
|
"type" : "long"
|
|
},
|
|
"authorName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
|
|
"bookName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
|
|
"bookDesc" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
|
|
"bookStatus" : {
|
|
"type" : "short"
|
|
},
|
|
|
|
"catId" : {
|
|
"type" : "integer"
|
|
},
|
|
|
|
"catName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
|
|
"lastIndexId" : {
|
|
"type" : "long"
|
|
},
|
|
|
|
"lastIndexName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
|
|
"lastIndexUpdateTime" : {
|
|
"type": "keyword"
|
|
},
|
|
|
|
"picUrl" : {
|
|
"type" : "keyword"
|
|
},
|
|
|
|
"score" : {
|
|
"type" : "float"
|
|
},
|
|
|
|
"wordCount" : {
|
|
"type" : "integer"
|
|
},
|
|
|
|
"workDirection" : {
|
|
"type" : "short"
|
|
},
|
|
|
|
"visitCount" : {
|
|
"type": "long"
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
} |