feat: 新增附件上传接口

This commit is contained in:
2025-02-28 14:46:47 +08:00
parent ca40dc3cc8
commit 084b003abf
5 changed files with 149 additions and 0 deletions

View File

@@ -277,6 +277,9 @@ Route::group('v1', function () {
// 附件(下载管理)
Route::group('attachment', function () {
// 附件(下载管理)上传
Route::post('/upload', 'Upload/attachment');
// 附件(下载管理)列表
Route::get('index', 'Attachment/index');