|
|
|
@ -271,6 +271,15 @@ public class TaskInfoServiceImpl implements TaskInfoService {
|
|
|
|
|
if (tagLibraryDOS1 != null && tagLibraryDOS1.size() > 0) { |
|
|
|
|
item.setTagList(tagLibraryDOS1.stream().map(TagLibraryDO::getTagName).collect(Collectors.toList())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//发布的部门
|
|
|
|
|
if (item.getCreator() != null) { |
|
|
|
|
final Long value = Long.valueOf(item.getCreator()); |
|
|
|
|
final DeptDO deptDO = deptService.getByUserId(value); |
|
|
|
|
item.setDeptName(deptDO.getName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|