|
@@ -23,6 +23,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.Model;
|
|
import org.springframework.ui.Model;
|
|
|
|
+import org.springframework.web.bind.WebDataBinder;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
@@ -53,6 +54,17 @@ public class SettlementController {
|
|
@Autowired
|
|
@Autowired
|
|
private IEnterpriseService iEnterpriseService;
|
|
private IEnterpriseService iEnterpriseService;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 初始化参数数组长度最大值
|
|
|
|
+ *
|
|
|
|
+ * @param binder
|
|
|
|
+ */
|
|
|
|
+ @InitBinder
|
|
|
|
+ protected void initBinder(WebDataBinder binder) {
|
|
|
|
+ binder.setAutoGrowNestedPaths(true);
|
|
|
|
+ binder.setAutoGrowCollectionLimit(2048);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 结算单管理列表查询
|
|
* 结算单管理列表查询
|
|
*/
|
|
*/
|