|
|
@@ -828,7 +828,7 @@ public class ListeningPlanServiceImpl implements ListeningPlanServiceInterface{
|
|
|
}
|
|
|
private Mono<List<Material>> getTextListsYx( ArrayList<Long> id) {
|
|
|
return template.select(Query.query(Criteria.where("type").is(14)
|
|
|
- .and("group_type_id").is(id)
|
|
|
+ .and("group_type_id").in(id)
|
|
|
.and("group_type").is(1).and("deleted_at").isNull()), Material.class).collectList();
|
|
|
}
|
|
|
private Mono<List<Image>> getBgImageYx(Long id) {
|
|
|
@@ -838,7 +838,7 @@ public class ListeningPlanServiceImpl implements ListeningPlanServiceInterface{
|
|
|
}
|
|
|
private Mono<List<Image>> getFmImageListsYx( ArrayList<Long> id) {
|
|
|
return template.select(Query.query(Criteria.where("type").is(10)
|
|
|
- .and("group_type_id").is(id).and("group_type")
|
|
|
+ .and("group_type_id").in(id).and("group_type")
|
|
|
.is(1).and("deleted_at").isNull()), Image.class).collectList();
|
|
|
}
|
|
|
private Mono<List<Image>> getImageTypeYx(Long id){
|