fix(接口测试): 修复接口导入报错问题

--user=郭雨琦
This commit is contained in:
guoyuqi 2022-07-15 16:48:38 +08:00 committed by f2c-ci-robot[bot]
parent d6f20245e9
commit 13bb1ec4ec
1 changed files with 3 additions and 1 deletions

View File

@ -1368,7 +1368,7 @@ public class ApiModuleService extends NodeTreeService<ApiModuleDTO> {
int finalI = i;
//在选择的模块下建模块查看选择的模块下有没有同名的模块
List<ApiModule> moduleList = pidChildrenMap.get(parentModule.getId());
if (moduleList != null && !moduleList.isEmpty()) {
if (moduleList != null) {
List<ApiModule> collect1 = moduleList.stream().filter(t -> t.getName().equals(tagTree[finalI])).collect(Collectors.toList());
if (collect1.isEmpty()) {
return createModule(tagTree, i, parentModule, moduleMap, pidChildrenMap, idPathMap);
@ -1376,6 +1376,8 @@ public class ApiModuleService extends NodeTreeService<ApiModuleDTO> {
returnModule = collect1.get(0);
parentModule = collect1.get(0);
}
} else {
return createModule(tagTree, i, parentModule, moduleMap, pidChildrenMap, idPathMap);
}
}
return returnModule;