ci:将部分orgName改为longName

This commit is contained in:
2023-05-16 18:01:02 +08:00
parent 5219263cae
commit d454c7e3a6
2 changed files with 3 additions and 3 deletions
@@ -693,7 +693,7 @@ public class IReportServiceImpl extends ServiceImpl<ReportDao, ReportEntity>
String[] idArray = department.split(",");
List<OrgEO> orgEOList = orgEOService.query().in("ID", idArray).list();
if (CollectionUtils.isNotEmpty(orgEOList)) {
String departmentName = orgEOList.stream().map(OrgEO::getOrgName).collect(Collectors.joining(","));
String departmentName = orgEOList.stream().map(OrgEO::getLongName).collect(Collectors.joining(","));
reportDetailVo.setDepartmentName(departmentName);
}
}