后台资产展示代码

master
冷调 2024-08-27 20:44:09 +08:00
parent 80d6cf92ee
commit 4be2e3beda
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public class TableDataController extends BaseController {
public Result findByTableName(){
List<Children> childrenList = childrenService.list();
List<TableInfoResp> list = childrenList.stream().filter(children -> children.getAssetId() == 0).map(children -> {
List<TableInfoResp> list = childrenList.stream().map(children -> {
TableInfoResp tableInfoResp = Children.toTableInfoResp(children);
tableInfoResp.setChildren(getChildren(children, childrenList));
return tableInfoResp;