mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
62 lines
1.2 KiB
HTTP
62 lines
1.2 KiB
HTTP
PUT /book
|
|
{
|
|
"mappings" : {
|
|
"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"
|
|
},
|
|
"categoryId" : {
|
|
"type" : "integer"
|
|
},
|
|
"categoryName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
"lastChapterId" : {
|
|
"type" : "long"
|
|
},
|
|
"lastChapterName" : {
|
|
"type" : "text",
|
|
"analyzer": "ik_smart"
|
|
},
|
|
"lastChapterUpdateTime" : {
|
|
"type": "long"
|
|
},
|
|
"picUrl" : {
|
|
"type" : "keyword",
|
|
"index" : false,
|
|
"doc_values" : false
|
|
},
|
|
"score" : {
|
|
"type" : "integer"
|
|
},
|
|
"wordCount" : {
|
|
"type" : "integer"
|
|
},
|
|
"workDirection" : {
|
|
"type" : "short"
|
|
},
|
|
"visitCount" : {
|
|
"type": "long"
|
|
}
|
|
}
|
|
}
|
|
} |