配置表

请问有没有一张配置表,能查出一个挂载为预览的所有报表清单

FineReport 阿洋在燃烧 发布于 2024-8-2 16:18
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
snrtuemcLv8专家互助
发布于2024-8-2 16:18(编辑于 2024-8-2 16:19)

查询报表目录

select id1,id2,id3,id4,concat(lv1, '/', lv2,  concat( '/', lv3 ), concat( '/', lv4 )) as dictory ,lv1 ,lv2 ,lv3 ,lv4 ,paths from

(select a.id as id1,b.id as id2,c.id as id3,d.id as id4,a.displayName as lv1 ,b.displayName as lv2 ,c.displayName as lv3 ,d.displayName as lv4 ,ifnull( ifnull( b.path, c.path ), d.path ) as paths from fine_authority_object a

left join fine_authority_object b on a.id = b.parentId

left join fine_authority_object c on b.id = c.parentId

left join fine_authority_object d on c.id = d.parentId

where a.parentid = 'decision-directory-root'

order by a.sortIndex ) a

===========

image.png

  • 阿洋在燃烧 阿洋在燃烧(提问者) 请问a.parentid = 'decision-directory-root'这个是用来控制什么的呀
    2024-08-05 13:46 
  • 2关注人数
  • 132浏览人数
  • 最后回答于:2024-8-2 16:19
    请选择关闭问题的原因
    确定 取消
    返回顶部