mirror of
https://github.com/201206030/novel-cloud.git
synced 2025-04-27 01:40:50 +00:00
57 lines
1023 B
HTTP
57 lines
1023 B
HTTP
PUT /book
|
|
{
|
|
"mappings" : {
|
|
"properties" : {
|
|
"id" : {
|
|
"type" : "long"
|
|
},
|
|
"authorId" : {
|
|
"type" : "long"
|
|
},
|
|
"authorName" : {
|
|
"type" : "text"
|
|
},
|
|
"bookName" : {
|
|
"type" : "text"
|
|
},
|
|
"bookDesc" : {
|
|
"type" : "text"
|
|
},
|
|
"bookStatus" : {
|
|
"type" : "short"
|
|
},
|
|
"categoryId" : {
|
|
"type" : "integer"
|
|
},
|
|
"categoryName" : {
|
|
"type" : "text"
|
|
},
|
|
"lastChapterId" : {
|
|
"type" : "long"
|
|
},
|
|
"lastChapterName" : {
|
|
"type" : "text"
|
|
},
|
|
"lastChapterUpdateTime" : {
|
|
"type": "long"
|
|
},
|
|
"picUrl" : {
|
|
"type" : "keyword",
|
|
"index" : false,
|
|
"doc_values" : false
|
|
},
|
|
"score" : {
|
|
"type" : "integer"
|
|
},
|
|
"wordCount" : {
|
|
"type" : "integer"
|
|
},
|
|
"workDirection" : {
|
|
"type" : "short"
|
|
},
|
|
"visitCount" : {
|
|
"type": "long"
|
|
}
|
|
}
|
|
}
|
|
} |