refactor: reorganize modules and add Linux build tooling
This commit is contained in:
13
module/base/cms/test/category/category_add.http
Normal file
13
module/base/cms/test/category/category_add.http
Normal file
@@ -0,0 +1,13 @@
|
||||
POST http://127.0.0.1:12409/Cms.Category/Create
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"title": " Find A Disruibutor" ,
|
||||
"coverPath": "iii.jpg" ,
|
||||
"intro": "Find A Disruibutor介绍",
|
||||
"category_key":"Find A Disruibutor",
|
||||
"parent_id":1
|
||||
}
|
||||
|
||||
|
||||
7
module/base/cms/test/category/category_del.http
Normal file
7
module/base/cms/test/category/category_del.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Category/Delete
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "01JRFGK8D1NC1Y1SPRDPK9H7SH"
|
||||
}
|
||||
7
module/base/cms/test/category/category_list.http
Normal file
7
module/base/cms/test/category/category_list.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://api.apinb.com/Cms.Category/Fetch
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"keyword":"Business"
|
||||
}
|
||||
12
module/base/cms/test/category/category_modify.http
Normal file
12
module/base/cms/test/category/category_modify.http
Normal file
@@ -0,0 +1,12 @@
|
||||
POST http://127.0.0.1:12409/Cms.Category/ModifyCategory
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "01JRFGJRETHSJMBDY9PPTKMQ9K",
|
||||
|
||||
"parent_identity": "1",
|
||||
"title": "健康和健身" ,
|
||||
"coverPath": "hhh.jpg" ,
|
||||
"intro": "健康和健身介绍"
|
||||
}
|
||||
10
module/base/cms/test/comment/comment_add.http
Normal file
10
module/base/cms/test/comment/comment_add.http
Normal file
@@ -0,0 +1,10 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/AddComment
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"post_identity": "0196d7c7-7b32-7ca0-acac-93e7915380ee" ,
|
||||
"reply_identity": "",
|
||||
"Cms": "Hey! Maximize your GoodWe system by leveraging the SEMS Portal. Monitor your energy usage, set up alerts for any issues, and use the analytics to adjust settings for optimal efficiency. The User Manual is a great resource for more tips."
|
||||
|
||||
}
|
||||
7
module/base/cms/test/comment/comment_del.http
Normal file
7
module/base/cms/test/comment/comment_del.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DeleteComment
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "01JRW67QBCJ4NQ9TPPXW4RCY8Z"
|
||||
}
|
||||
8
module/base/cms/test/comment/comment_list.http
Normal file
8
module/base/cms/test/comment/comment_list.http
Normal file
@@ -0,0 +1,8 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/CommentList
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"post_identity": "0196d1e6-6067-730c-8f36-96cc8ba9f07c" ,
|
||||
"size":10
|
||||
}
|
||||
11
module/base/cms/test/comment/comment_modify.http
Normal file
11
module/base/cms/test/comment/comment_modify.http
Normal file
@@ -0,0 +1,11 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/ModifyComment
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01JRW63DT0KA4K903QNH0QAW8Y",
|
||||
|
||||
"post_identity": "01JRSSMHCRVWCJSEXN045M4TVV" ,
|
||||
"parent_id": 2 ,
|
||||
"Cms": "我觉得都不咋地"
|
||||
}
|
||||
9
module/base/cms/test/comment/desc_comment_like.http
Normal file
9
module/base/cms/test/comment/desc_comment_like.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DescCommentLike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRY4VBX8GDVN28CZF45XG7WK",
|
||||
"comment_identity":"01JRW67QBCJ4NQ9TPPXW4RCY8Z"
|
||||
|
||||
}
|
||||
9
module/base/cms/test/comment/desc_comment_unlike.http
Normal file
9
module/base/cms/test/comment/desc_comment_unlike.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DescCommentUnlike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRY4VBX8GDVN28CZF45XG7WK",
|
||||
"comment_identity":"01JRW67QBCJ4NQ9TPPXW4RCY8Z"
|
||||
|
||||
}
|
||||
8
module/base/cms/test/comment/incr_comment_like.http
Normal file
8
module/base/cms/test/comment/incr_comment_like.http
Normal file
@@ -0,0 +1,8 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/IncrCommentLike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"comment_identity":"01JRW67QBCJ4NQ9TPPXW4RCY8Z"
|
||||
|
||||
}
|
||||
9
module/base/cms/test/comment/incr_comment_unlike.http
Normal file
9
module/base/cms/test/comment/incr_comment_unlike.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/IncrCommentUnlike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRY4VBX8GDVN28CZF45XG7WK",
|
||||
"comment_identity":"01JRW67QBCJ4NQ9TPPXW4RCY8Z"
|
||||
|
||||
}
|
||||
85
module/base/cms/test/pages/create.http
Normal file
85
module/base/cms/test/pages/create.http
Normal file
@@ -0,0 +1,85 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/Create
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
|
||||
"tags_identity_array": [
|
||||
"01JRHW8GRW92PHMTRCXF8539PZ"
|
||||
],
|
||||
"title": "热门漫画《冒险岛》更新",
|
||||
"coverPath": "/images/comic_adventure_island_cover.jpg",
|
||||
"author": "漫画爱好者",
|
||||
"authorIdentity": "",
|
||||
"Cms": "<p>这是漫画更新的主要内容,包括新章节介绍和角色分析...</p >",
|
||||
"targetUrl": "https://example.com/comic-adventure-island",
|
||||
"sourceUrl": "https://example.com/comic-adventure-island",
|
||||
"hits": "0",
|
||||
"accessoryIdentityArray": [
|
||||
"0196619c-d5ae-7832-a6f3-78cef4fb1c14"
|
||||
],
|
||||
"hasAccessory": true,
|
||||
"createdAt": "2025-04-23 11:09:00.471257 +0800 CST",
|
||||
"updatedAt": "2025-04-23 15:44:24.365008 +0800 CST",
|
||||
"description": "介绍热门漫画《冒险岛》的最新章节和剧情发展。",
|
||||
"likeHits": "0",
|
||||
"unlikeHits": "0",
|
||||
"commentHits": "0",
|
||||
"type": 10,
|
||||
"rights": "",
|
||||
"key": "222222211",
|
||||
"categoryData": [
|
||||
{
|
||||
"id": "53",
|
||||
"identity": "0196615b-b773-72a8-a00c-37683d0e501a",
|
||||
"parentId": "0",
|
||||
"title": "11",
|
||||
"coverPath": "",
|
||||
"intro": "11111",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"identity": "019642d5-2e29-7032-b09c-5e6e521e7449",
|
||||
"parentId": "0",
|
||||
"title": "adf阿道夫",
|
||||
"coverPath": "",
|
||||
"intro": "",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
}
|
||||
],
|
||||
"tags_data": [
|
||||
{
|
||||
"title": "热门漫画",
|
||||
"identity": "01JRHW8GRW92PHMTRCXF8539PZ"
|
||||
}
|
||||
|
||||
],
|
||||
"accessory_data": [
|
||||
{
|
||||
"title": "【哲风壁纸】更科瑠夏-租借女友 (1).png",
|
||||
"file_path": "/images/comic_adventure_island_cover.jpg"
|
||||
}
|
||||
|
||||
],
|
||||
"fileList": [
|
||||
{
|
||||
"url": "/images/comic_adventure_island_cover.jpg"
|
||||
}
|
||||
],
|
||||
"attachment": [
|
||||
{
|
||||
"identity": "0196619c-d5ae-7832-a6f3-78cef4fb1c14",
|
||||
"url": "http://files.apinb.com/123/2025-04/01/01JSGSSNDEWJVBCKNGEP66C1Q4.png",
|
||||
"name": "【哲风壁纸】更科瑠夏-租借女友 (1).png"
|
||||
}
|
||||
]
|
||||
}
|
||||
7
module/base/cms/test/pages/delete.http
Normal file
7
module/base/cms/test/pages/delete.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/Delete
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01968030-95c3-7b64-be95-c4d095652103"
|
||||
}
|
||||
8
module/base/cms/test/pages/fetch.http
Normal file
8
module/base/cms/test/pages/fetch.http
Normal file
@@ -0,0 +1,8 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/Fetch
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"page":1,
|
||||
"keyword":"热"
|
||||
}
|
||||
7
module/base/cms/test/pages/get_by_identity.http
Normal file
7
module/base/cms/test/pages/get_by_identity.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/GetByIdentity
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01968030-95c3-7b64-be95-c4d095652103"
|
||||
}
|
||||
7
module/base/cms/test/pages/get_by_key.http
Normal file
7
module/base/cms/test/pages/get_by_key.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/GetByKey
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"key":"222222211"
|
||||
}
|
||||
88
module/base/cms/test/pages/modify.http
Normal file
88
module/base/cms/test/pages/modify.http
Normal file
@@ -0,0 +1,88 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/Modify
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01968030-95c3-7b64-be95-c4d095652103",
|
||||
|
||||
"tags_identity_array": [
|
||||
"01JRHW8GRW92PHMTRCXF8539PZ",
|
||||
"01JRHW6SVJBQTHXAD83H1E0W0K"
|
||||
],
|
||||
"title": "热门漫画《火影忍者》更新",
|
||||
"coverPath": "/images/comic_adventure_island_cover.jpg",
|
||||
"author": "漫画爱好者",
|
||||
"authorIdentity": "",
|
||||
"Cms": "<p>这是漫画更新的主要内容,包括新章节介绍和角色分析...</p >",
|
||||
"targetUrl": "https://example.com/comic-adventure-island",
|
||||
"sourceUrl": "https://example.com/comic-adventure-island",
|
||||
"hits": "0",
|
||||
"accessory_identity_array": [
|
||||
"0196619c-d5ae-7832-a6f3-78cef4fb1c14"
|
||||
],
|
||||
"hasAccessory": true,
|
||||
"createdAt": "2025-04-23 11:09:00.471257 +0800 CST",
|
||||
"updatedAt": "2025-04-23 15:44:24.365008 +0800 CST",
|
||||
"description": "介绍热门漫画《冒险岛》的最新章节和剧情发展。",
|
||||
"likeHits": "0",
|
||||
"unlikeHits": "0",
|
||||
"commentHits": "0",
|
||||
"type": 10,
|
||||
"rights": "",
|
||||
"key": "222222211",
|
||||
"categoryData": [
|
||||
{
|
||||
"id": "53",
|
||||
"identity": "0196615b-b773-72a8-a00c-37683d0e501a",
|
||||
"parentId": "0",
|
||||
"title": "11",
|
||||
"coverPath": "",
|
||||
"intro": "11111",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"identity": "019642d5-2e29-7032-b09c-5e6e521e7449",
|
||||
"parentId": "0",
|
||||
"title": "adf阿道夫",
|
||||
"coverPath": "",
|
||||
"intro": "",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
}
|
||||
],
|
||||
"tags_data": [
|
||||
{
|
||||
"title": "热门漫画",
|
||||
"identity": "01JRHW8GRW92PHMTRCXF8539PZ"
|
||||
}
|
||||
|
||||
|
||||
],
|
||||
"accessory_data": [
|
||||
{
|
||||
"title": "【哲风壁纸】更科瑠夏-租借女友 (1).png",
|
||||
"file_path": "/images/comic_adventure_island_cover.jpg"
|
||||
}
|
||||
|
||||
],
|
||||
"fileList": [
|
||||
{
|
||||
"url": "/images/comic_adventure_island_cover.jpg"
|
||||
}
|
||||
],
|
||||
"attachment": [
|
||||
{
|
||||
"identity": "0196619c-d5ae-7832-a6f3-78cef4fb1c14",
|
||||
"url": "http://files.apinb.com/123/2025-04/01/01JSGSSNDEWJVBCKNGEP66C1Q4.png",
|
||||
"name": "【哲风壁纸】更科瑠夏-租借女友 (1).png"
|
||||
}
|
||||
]
|
||||
}
|
||||
7
module/base/cms/test/pages/search.http
Normal file
7
module/base/cms/test/pages/search.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.PostPages/Search
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"keyword":"热"
|
||||
}
|
||||
9
module/base/cms/test/post/desc_post_like.http
Normal file
9
module/base/cms/test/post/desc_post_like.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DescPostLike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRW112WRTAF6730NGSF0JFDA",
|
||||
"post_identity":"01JRSSMHCRVWCJSEXN045M4TVV"
|
||||
|
||||
}
|
||||
9
module/base/cms/test/post/desc_post_unlike.http
Normal file
9
module/base/cms/test/post/desc_post_unlike.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DescPostUnlike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRW112WRTAF6730NGSF0JFDA",
|
||||
"post_identity":"01JRSSMHCRVWCJSEXN045M4TVV"
|
||||
|
||||
}
|
||||
9
module/base/cms/test/post/incr_post_like.http
Normal file
9
module/base/cms/test/post/incr_post_like.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/IncrPostLike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRW112WRTAF6730NGSF0JFDA",
|
||||
"post_identity":"01JRSSMHCRVWCJSEXN045M4TVV"
|
||||
|
||||
}
|
||||
9
module/base/cms/test/post/incr_post_unlike.http
Normal file
9
module/base/cms/test/post/incr_post_unlike.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/IncrPostUnlike
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"op_identity":"01JRW112WRTAF6730NGSF0JFDA",
|
||||
"post_identity":"01JRSSMHCRVWCJSEXN045M4TVV"
|
||||
|
||||
}
|
||||
33
module/base/cms/test/post/post_add.http
Normal file
33
module/base/cms/test/post/post_add.http
Normal file
@@ -0,0 +1,33 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/Create
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
|
||||
"category_identity_array": [
|
||||
"0196d1a7-4cc9-776c-a01a-ee154b43ffb7"
|
||||
],
|
||||
"tags_identity_array": [
|
||||
"0196d1a7-4cc9-776c-a01a-ee154b43ffb7"
|
||||
],
|
||||
"accessory_data": [
|
||||
{
|
||||
"title": "GoodWe",
|
||||
"file_path": "https://cbu01.alicdn.com/img/ibank/O1CN01yPvMqB1ChLCbapHcQ_!!2213030850112-0-cib.jpg",
|
||||
}
|
||||
],
|
||||
"title": " Enhancing Your GoodWe System with New Firmware",
|
||||
"cover_path": "https://cbu01.alicdn.com/img/ibank/O1CN01yPvMqB1ChLCbapHcQ_!!2213030850112-0-cib.jpg",
|
||||
"author": "漫画爱好者",
|
||||
"author_identity": "",
|
||||
"Cms": " Enhancing Your GoodWe System with New FirmwareCms:Just a quick reminder to check for the latest firmware updates for your GoodWe inverter. These updates can significantly improve the performance and features of your monitoring platform. With new firmware, you can enjoy better data accuracy, faster processing, and additional functionalities like remote control and dynamic electricity price monitoring. Don't miss out on these improvements!Support Link: GoodWe Support",
|
||||
"targetUrl": "https://example.com/comic-adventure-island",
|
||||
"sourceUrl": "https://example.com/comic-adventure-island",
|
||||
"hits": "0",
|
||||
"accessory_identity_array": [
|
||||
"0196619c-d5ae-7832-a6f3-78cef4fb1c14"
|
||||
],
|
||||
"hasAccessory": true,
|
||||
"description": " Enhancing Your GoodWe System with New Firmware",
|
||||
"key": "47"
|
||||
}
|
||||
7
module/base/cms/test/post/post_del.http
Normal file
7
module/base/cms/test/post/post_del.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/DeletePost
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "01JRVQ1GJVHMNH81HJV2PEHVPP"
|
||||
}
|
||||
7
module/base/cms/test/post/post_get.http
Normal file
7
module/base/cms/test/post/post_get.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/GetByIdentity
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "0196d1e6-6067-730c-8f36-96cc8ba9f07c"
|
||||
}
|
||||
8
module/base/cms/test/post/post_list.http
Normal file
8
module/base/cms/test/post/post_list.http
Normal file
@@ -0,0 +1,8 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/Fetch
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
83
module/base/cms/test/post/post_modify.http
Normal file
83
module/base/cms/test/post/post_modify.http
Normal file
@@ -0,0 +1,83 @@
|
||||
POST http://127.0.0.1:12409/Cms.Post/Modify
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity": "0196609e-c6a6-70aa-a53d-937fc6c37a1c",
|
||||
"ownerId": "0",
|
||||
"ownerIdentity": "",
|
||||
"categoryIdentityArray": [
|
||||
"0196615b-b773-72a8-a00c-37683d0e501a",
|
||||
"019642d5-2e29-7032-b09c-5e6e521e7449"
|
||||
],
|
||||
"tagsIdentityArray": [
|
||||
|
||||
],
|
||||
"title": "热门漫画《冒险岛》更新",
|
||||
"coverPath": "/images/comic_adventure_island_cover.jpg",
|
||||
"author": "漫画爱好者",
|
||||
"authorIdentity": "",
|
||||
"Cms": "<p>这是漫画更新的主要内容,包括新章节介绍和角色分析...</p >",
|
||||
"targetUrl": "https://example.com/comic-adventure-island",
|
||||
"sourceUrl": "https://example.com/comic-adventure-island",
|
||||
"hits": "0",
|
||||
"accessoryIdentityArray": [
|
||||
"0196619c-d5ae-7832-a6f3-78cef4fb1c14"
|
||||
],
|
||||
"hasAccessory": true,
|
||||
"createdAt": "2025-04-23 11:09:00.471257 +0800 CST",
|
||||
"updatedAt": "2025-04-23 15:44:24.365008 +0800 CST",
|
||||
"description": "介绍热门漫画《冒险岛》的最新章节和剧情发展。",
|
||||
"likeHits": "0",
|
||||
"unlikeHits": "0",
|
||||
"commentHits": "0",
|
||||
"type": 10,
|
||||
"rights": "",
|
||||
"key": "221",
|
||||
"categoryData": [
|
||||
{
|
||||
"id": "53",
|
||||
"identity": "0196615b-b773-72a8-a00c-37683d0e501a",
|
||||
"parentId": "0",
|
||||
"title": "11",
|
||||
"coverPath": "",
|
||||
"intro": "11111",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "38",
|
||||
"identity": "019642d5-2e29-7032-b09c-5e6e521e7449",
|
||||
"parentId": "0",
|
||||
"title": "adf阿道夫",
|
||||
"coverPath": "",
|
||||
"intro": "",
|
||||
"createdAt": "",
|
||||
"updatedAt": "",
|
||||
"child": [
|
||||
|
||||
]
|
||||
}
|
||||
],
|
||||
"tagsData": [
|
||||
|
||||
],
|
||||
"accessoryData": [
|
||||
|
||||
],
|
||||
"fileList": [
|
||||
{
|
||||
"url": "/images/comic_adventure_island_cover.jpg"
|
||||
}
|
||||
],
|
||||
"attachment": [
|
||||
{
|
||||
"identity": "0196619c-d5ae-7832-a6f3-78cef4fb1c14",
|
||||
"url": "http://files.apinb.com/123/2025-04/01/01JSGSSNDEWJVBCKNGEP66C1Q4.png",
|
||||
"name": "【哲风壁纸】更科瑠夏-租借女友 (1).png"
|
||||
}
|
||||
]
|
||||
}
|
||||
7
module/base/cms/test/tags/tags_List.http
Normal file
7
module/base/cms/test/tags/tags_List.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Tags/TagsList
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
|
||||
}
|
||||
9
module/base/cms/test/tags/tags_add.http
Normal file
9
module/base/cms/test/tags/tags_add.http
Normal file
@@ -0,0 +1,9 @@
|
||||
POST http://127.0.0.1:12409/Cms.Tags/AddTags
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"title": "2025年4月11日 " ,
|
||||
"coverPath": "ddd.jpg" ,
|
||||
"intro": " 2025年4月11日 相关介绍"
|
||||
}
|
||||
7
module/base/cms/test/tags/tags_del.http
Normal file
7
module/base/cms/test/tags/tags_del.http
Normal file
@@ -0,0 +1,7 @@
|
||||
POST http://127.0.0.1:12409/Cms.Tags/DeleteTags
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01JRHWAN7WTJTXB0R95QZ96RJ3"
|
||||
}
|
||||
10
module/base/cms/test/tags/tags_modify.http
Normal file
10
module/base/cms/test/tags/tags_modify.http
Normal file
@@ -0,0 +1,10 @@
|
||||
POST http://127.0.0.1:12409/Cms.Tags/ModifyTags
|
||||
Cms-Type: application/json
|
||||
Authorization: {{BSM_TOKEN}}
|
||||
|
||||
{
|
||||
"identity":"01JRHVW75E7X6BQXF3RJVZTWWT",
|
||||
"title": "已发布" ,
|
||||
"coverPath": "eee.jpg" ,
|
||||
"intro": " 已发布 相关介绍"
|
||||
}
|
||||
Reference in New Issue
Block a user