|
|
|
@ -160,6 +160,9 @@ public class TicketMatterGroupServiceImpl extends BaseServiceImpl<TicketMatterGr
|
|
|
|
|
if (CollectionUtil.isNotEmpty(req.getMatterLibraryListOne())) { |
|
|
|
|
list.addAll(req.getMatterLibraryListOne().stream().map(matterLibrary -> { |
|
|
|
|
TwoTicketMatterLibraryEntity libraryEntity = BeanUtil.copy(matterLibrary, TwoTicketMatterLibraryEntity.class); |
|
|
|
|
if ("8" == req.getTicketType()) { |
|
|
|
|
libraryEntity.setType("8"); |
|
|
|
|
} |
|
|
|
|
libraryEntity.setMatterGroup(groupEntity.getId()); |
|
|
|
|
return libraryEntity; |
|
|
|
|
}).collect(Collectors.toList())); |
|
|
|
|