增加查询条件

main
zhaokai 2026-01-14 10:07:38 +08:00
parent a0e48c04f8
commit 3105036e91
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ public class CorpInfoQueryExe {
List<CorpDepartmentE> corpInfoList = corpInfoCoConvertor.converDOsToCorpDepartCOs(pageResponse.getData()); List<CorpDepartmentE> corpInfoList = corpInfoCoConvertor.converDOsToCorpDepartCOs(pageResponse.getData());
corpInfoList.forEach(corpInfo -> { corpInfoList.forEach(corpInfo -> {
Map<String, Object> departParmas = new HashMap<>(); Map<String, Object> departParmas = new HashMap<>();
departParmas.put("eqId", corpInfo.getId()); departParmas.put("eqCorpinfoId", corpInfo.getId());
List<DepartmentDO> list = departmentRepository.listByParams(departParmas); List<DepartmentDO> list = departmentRepository.listByParams(departParmas);
if (CollUtil.isNotEmpty(list)) { if (CollUtil.isNotEmpty(list)) {
List<DepartmentE> departmentES = corpInfoCoConvertor.converDOsToDepartE(list); List<DepartmentE> departmentES = corpInfoCoConvertor.converDOsToDepartE(list);