From 9e3030755974c40bf07a36c5dbaf100e8ccff8a8 Mon Sep 17 00:00:00 2001 From: wangxy <1481820854@qq.com> Date: Tue, 7 Jan 2025 08:46:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E9=85=8D=E7=BD=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ruoyi/web/controller/home/LawController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/home/LawController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/home/LawController.java index 5abfe5c..7482595 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/home/LawController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/home/LawController.java @@ -48,13 +48,13 @@ public class LawController extends BaseController { @ApiOperation("类别树") @GetMapping("/getTree") - public List getTree(@RequestParam(required = false, defaultValue = "0") String parentId) { + public R> getTree(@RequestParam(required = false, defaultValue = "0") String parentId) { LambdaQueryWrapper tagWrapper = new LambdaQueryWrapper<>(); tagWrapper.eq(SysColumn::getParentId, parentId); List datas = columnService.list(tagWrapper); List tagTreeVOList = new ArrayList<>(Convert.toList(SysColumnVO.class, datas)); tagTreeVOList.forEach(this::buildChildren); - return tagTreeVOList; + return R.ok(tagTreeVOList); } /**