feat(wxapi): 新增小说小程序作品管理相关接口相关接口
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeLint / Lint (push) Waiting to run

This commit is contained in:
Fu Diwei
2025-04-29 17:23:25 +08:00
parent 530735a7ec
commit a2188d28b3
75 changed files with 2350 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{
"books": [
{
"book_id": "A1Hcfuuv",
"expire_time": 1704970161,
"grantee_appid": "wx002"
},
{
"book_id": "KqNdTu",
"expire_time": 1705460123,
"grantee_appid": "wx003"
}
]
}

View File

@@ -0,0 +1,8 @@
{
"errcode": 0,
"results": [
{
"errcode": 0
}
]
}

View File

@@ -0,0 +1,4 @@
{
"book_id": "A1Hcfu",
"grantee_appid": "wx001"
}

View File

@@ -0,0 +1,4 @@
{
"count": 20,
"offset": 0
}

View File

@@ -0,0 +1,17 @@
{
"errcode": 0,
"results": [
{
"book_id": "A1Hcfu",
"grantor_appid": "wx001",
"grantee_appid": "wx004",
"expire_time": 1801698644
},
{
"book_id": "uvKqNd",
"grantor_appid": "wx001",
"grantee_appid": "wx005",
"expire_time": 1704259146
}
]
}

View File

@@ -0,0 +1,3 @@
{
"book_id": "A1b2C3d4"
}

View File

@@ -0,0 +1,13 @@
{
"book_id": "A1b2C3d4",
"chapter_list": [
{
"chapter_title": "第一章 香蕉的诞生",
"content": "从前,有一座山……"
},
{
"chapter_title": "第二章 牛奶的诞生",
"content": "一望无际的草原,有一群快乐的奶牛……"
}
]
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"chapter_id_list": [ "abc1234", "abc2345" ]
}

View File

@@ -0,0 +1,10 @@
{
"title": "香蕉牛奶",
"intro": "香蕉牛奶的奇幻之旅。",
"cover_media_id": "xxx",
"author": "香蕉和牛奶",
"first_category_id": 10001,
"second_category_id": 10002,
"third_category_id": 10003,
"complete_status": 1
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"book_id": "A1b2C3d4"
}

View File

@@ -0,0 +1,7 @@
{
"book_id": "A1b2C3d4",
"chapter": {
"chapter_title": "第一章 香蕉的诞生",
"content": "从前,有一座山……"
}
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"chapter_id": "abc1234"
}

View File

@@ -0,0 +1,3 @@
{
"book_id": "A1b2C3d4"
}

View File

@@ -0,0 +1,4 @@
{
"book_id": "A1b2C3d4",
"chapter_id": "abc123"
}

View File

@@ -0,0 +1,3 @@
{
"book_id": "A1b2C3d4"
}

View File

@@ -0,0 +1,26 @@
{
"errcode": 0,
"errmsg": "ok",
"book": {
"book_id": "A1b2C3d4",
"title": "香蕉牛奶",
"intro": "香蕉牛奶的奇幻之旅。",
"cover_url": "https://xxx.jpg",
"author": "香蕉和牛奶",
"first_category_id": 10001,
"first_category_name": "男频",
"second_category_id": 10002,
"second_category_name": "都市",
"third_category_id": 10003,
"third_category_name": "娱乐明星",
"complete_status": 2,
"upload_scene": 1,
"chapter_cnt": 5,
"volume_cnt": 0,
"volume_list": [],
"total_word_cnt": 15234,
"create_time": 1704715412,
"original_id": "",
"chapter_order_method": 0
}
}

View File

@@ -0,0 +1,4 @@
{
"book_id": "A1b2C3d4",
"chapter_id": "abc123"
}

View File

@@ -0,0 +1,19 @@
{
"errcode": 0,
"errmsg": "ok",
"chapter": {
"book_id": "A1b2C3d4",
"chapter_id": "abc1234",
"chapter_title": "第一章 香蕉的诞生",
"content": "从前,有一座山……",
"word_cnt": 1234,
"create_time": 1704793640,
"audit_info": {
"audit_status": 3,
"create_time": 1705062255,
"audit_time": 1705063255
},
"volume_index": -1,
"original_id": "1234"
}
}

View File

@@ -0,0 +1,5 @@
{
"last_id": 0,
"offset": 0,
"limit": 1
}

View File

@@ -0,0 +1,26 @@
{
"errcode": 0,
"errmsg": "ok",
"book_list": [
{
"book_id": "A1b2C3d4",
"title": "香蕉牛奶",
"intro": "香蕉牛奶的奇幻之旅。",
"cover_url": "https://xxx.jpg",
"author": "香蕉和牛奶",
"first_category_id": 10001,
"second_category_id": 10002,
"third_category_id": 10003,
"complete_status": 2,
"upload_scene": 1,
"chapter_cnt": 6,
"volume_cnt": 3,
"total_word_cnt": 15234,
"create_time": 1704715412,
"original_id": "",
"chapter_order_method": 0
}
],
"total_cnt": 1,
"last_id": 1
}

View File

@@ -0,0 +1,6 @@
{
"book_id": "A1b2C3d4",
"need_edited_data": true,
"limit": 10,
"offset": 0
}

View File

@@ -0,0 +1,16 @@
{
"errcode": 0,
"errmsg": "ok",
"chapter_list": [
{
"chapter_id": "abc1234",
"chapter_title": "第一章 x",
"word_cnt": 1234,
"create_time": 1704793640,
"volume_index": -1,
"original_id": "1234",
"seq": 100
}
],
"total_cnt": 1
}

View File

@@ -0,0 +1,6 @@
{
"book_id": "A1b2C3d4",
"chapter_id": "abc123",
"target_chapter_id": "qwe456",
"operation": 1
}

View File

@@ -0,0 +1,6 @@
{
"book_id": "A1b2C3d4",
"chapter_id": "x1y2z3",
"new_chapter_title": "第一章 香蕉的诞生",
"new_content": "从前,有一座山……"
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"new_chapter_id": "abc1234"
}

View File

@@ -0,0 +1,17 @@
{
"book_id": "A1b2C3d4",
"complete_status": 2,
"need_volume": true,
"volume_list": [
{
"volume_title": "第一卷",
"start_index": 0,
"end_index": 2
},
{
"volume_title": "第二卷",
"start_index": 2,
"end_index": 5
}
]
}

View File

@@ -0,0 +1,13 @@
{
"book_id": "A1b2C3d4",
"chapter_seq_list": [
{
"chapter_id": "chapter10",
"seq": 100
},
{
"chapter_id": "chapter20",
"seq": 200
}
]
}

View File

@@ -0,0 +1,14 @@
{
"errcode": 0,
"errmsg": "ok",
"setting": {
"book_id": "test",
"default_words": 240,
"chapter_setting": [
{
"chapter_index": 1,
"words": 123
}
]
}
}

View File

@@ -0,0 +1,12 @@
{
"setting": {
"book_id": "test",
"default_words": 240,
"chapter_setting": [
{
"chapter_index": 1,
"words": 123
}
]
}
}

View File

@@ -0,0 +1,7 @@
{
"recmd_type": 1,
"book_id_list": [
"321321",
"abcdef"
]
}