|
@@ -654,6 +654,13 @@ public class ApiController {
|
|
|
.collect(Collectors.toList());
|
|
|
mapOne.put("subList", subTypeList);
|
|
|
|
|
|
+ // 结算通道
|
|
|
+
|
|
|
+ Map<String, Integer> collect = sysDeptSubService.list(Wrappers.<SysDeptSub>lambdaQuery().eq(SysDeptSub::getDeptId, sysU.getDeptId()))
|
|
|
+ .stream()
|
|
|
+ .collect(Collectors.toMap(SysDeptSub::getSubjectType, SysDeptSub::getSubjectChannel));
|
|
|
+ mapOne.put("subjectTypeAndChannel", collect);
|
|
|
+
|
|
|
list.add(mapOne);
|
|
|
|
|
|
roleList.addAll(roleIdList);
|