|
|
@@ -86,6 +86,12 @@ public class PlanNewCommonOutController {
|
|
|
.switchIfEmpty(Mono.error(new BaseException("计划code异")))
|
|
|
.onErrorResume(throwable -> Mono.error(new BaseException("计划code异")));
|
|
|
Mono<PlanNewCommonRes> resMono = planNewCommonMono.flatMap(f -> {
|
|
|
+ if(Objects.nonNull(f.type()) && 5==f.type()){
|
|
|
+ PlanNewCommonRes res = new PlanNewCommonRes();
|
|
|
+ res.setCode(code);
|
|
|
+ res.setConfigJson(f.configJson());
|
|
|
+ return Mono.just(res);
|
|
|
+ }
|
|
|
// 群成员
|
|
|
Mono<List<GroupUserRes>> groupUserResMono = Mono.just(new ArrayList<>());
|
|
|
// 群封面
|