优化三重一大生成逻辑

This commit is contained in:
2025-11-04 14:44:23 +08:00
parent cb93f4e566
commit a9f52f4b76
5 changed files with 313 additions and 203 deletions

View File

@@ -138,6 +138,10 @@ public class AiCloudFileController extends BaseController {
if (files == null || files.length == 0) {
return fail("请选择要上传的文件");
}
if (files.length > 10) {
return fail("一次最多只能上传10个文件");
}
User loginUser = getLoginUser();