// 拼接成以逗号分割的字符串List<VideoTag> list = videoTagService.list();String s = list.stream().map(VideoTag::getTag).collect(Collectors.joining(","));return s;