feat: 新增附件列表接口

This commit is contained in:
2025-02-28 15:27:49 +08:00
parent 26409a3c56
commit 8ef675d7e1
2 changed files with 10 additions and 3 deletions

View File

@@ -304,9 +304,12 @@ Route::group('v1', function () {
// 附件(下载管理)删除
Route::delete('delete/:id', 'Attachment/delete');
// 附件(下载管理)分类列表
Route::get('categorys', 'AttachmentCategory/index')->append(['scene' => 'all']);
// 附件(下载管理)分类
Route::group('category', function () {
// 附件(下载管理)分类列表
// 附件(下载管理)分类分页
Route::get('index', 'AttachmentCategory/index');
// 附件(下载管理)分类详情