This commit is contained in:
2023-04-12 23:21:30 +08:00
parent bac2753bc2
commit c2c36d06e3

View File

@@ -88,21 +88,19 @@ GET /api/images
page: 1, // 当前页码 page: 1, // 当前页码
pageSize: 20, // 分页数 pageSize: 20, // 分页数
next: true, // 是否存在下一页 next: true, // 是否存在下一页
list: [ list: [{
{ id: 1234, // 原图ID
id: 1234, // 原图ID width: 512, // 原图宽度
width: 512, // 原图 height: 512, // 原图
height: 512, // 原图高度 user: { // 来源用户
user: { // 来源用户 id: 1234,
id: 1234, user_name: 'LAST',
user_name: 'LAST', },
}, article: { // 来源文章
article: { // 来源文章 id: 1234,
id: 1234, title: 'GAMEX',
title: 'GAMEX',
}
} }
] }]
} }
``` ```