|
@@ -4417,7 +4417,7 @@ public class ExcelTabController extends BladeController {
|
|
|
@ApiImplicitParam(name = "nodeId", value = "nodeId", required = true),
|
|
|
|
|
|
})
|
|
|
- public R addBussFile(@RequestParam("file") MultipartFile[] file, String nodeId, Integer type, Long contractId, Integer classify, BladeUser b) {
|
|
|
+ public R addBussFile(@RequestParam("file") MultipartFile[] file, String nodeId, Integer type, Long contractId, Integer classify, BladeUser b,Integer sort) {
|
|
|
List<TableFile> fileList = new ArrayList<>();
|
|
|
if (file != null && file.length >= 1) {
|
|
|
for (MultipartFile multipartFile : file) {
|
|
@@ -4438,6 +4438,7 @@ public class ExcelTabController extends BladeController {
|
|
|
tableFile.setIsDeleted(0);
|
|
|
tableFile.setExtension(fileExtension);
|
|
|
tableFile.setClassify(classify);
|
|
|
+ tableFile.setSort(sort);
|
|
|
fileList.add(tableFile);
|
|
|
}
|
|
|
tableFileService.saveOrUpdateBatch(fileList);
|