浏览代码

材料库清单上传文件行数上限调整到1000

徐滕 1 月之前
父节点
当前提交
39afa663c9

+ 2 - 2
src/main/java/com/jeeplus/modules/projectmaterialstorage/web/ProjectMaterialStorageController.java

@@ -168,8 +168,8 @@ public class ProjectMaterialStorageController extends BaseController {
 
 
     @InitBinder
     @InitBinder
     public void initBinder(WebDataBinder binder) {
     public void initBinder(WebDataBinder binder) {
-        // 设置集合自动增长的上限为 100
-        binder.setAutoGrowCollectionLimit(512);
+        // 设置集合自动增长的上限为 1000
+        binder.setAutoGrowCollectionLimit(1000);
     }
     }
 
 
     /**
     /**