6075 mqtt

This commit is contained in:
2025-11-05 17:55:59 +08:00
parent c4957aa3aa
commit 1dc3386284
19 changed files with 313 additions and 22 deletions

View File

@ -25,6 +25,7 @@ public class AppFileController extends BaseController {
private final AppFileService appFileService;
/**
* 查询文件列表
*/
@ -33,6 +34,7 @@ public class AppFileController extends BaseController {
return R.ok(appFileService.list(bo));
}
/**
* 上传文件
*/
@ -52,4 +54,5 @@ public class AppFileController extends BaseController {
}
return toAjax(appFileService.delete(ids));
}
}