|
@@ -112,8 +112,8 @@ public class QyRecordServiceImpl extends ServiceImpl<QyRecordMapper, QyRecord> i
|
|
|
if(CollectionUtil.isEmpty(list)){
|
|
|
return null;
|
|
|
}
|
|
|
- List<String> applyTypes = list.stream().map(QyRecord::getApplyType).collect(Collectors.toList());
|
|
|
- String join = String.join(",",applyTypes);
|
|
|
+ List<String> zzTypes = list.stream().map(QyRecord::getZzType).collect(Collectors.toList());
|
|
|
+ String join = String.join(",",zzTypes);
|
|
|
QyRecord first = CollectionUtil.getFirst(list);
|
|
|
first.setApplyType(join);
|
|
|
return first;
|