+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/hchyun/hchyun-admin/src/main/java/com/hchyun/web/core/config/SwaggerConfig.java b/hchyun/hchyun-admin/src/main/java/com/hchyun/web/core/config/SwaggerConfig.java
index ee9a12b..3573ecf 100644
--- a/hchyun/hchyun-admin/src/main/java/com/hchyun/web/core/config/SwaggerConfig.java
+++ b/hchyun/hchyun-admin/src/main/java/com/hchyun/web/core/config/SwaggerConfig.java
@@ -116,7 +116,7 @@ public class SwaggerConfig
// 设置标题
.title("标题:宏驰云管理系统_接口文档")
// 描述
- .description("描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...")
+ .description("描述:系统接口模块管理")
// 作者信息
.contact(new Contact(hchYunConfig.getName(), null, null))
// 版本
diff --git a/hchyun/hchyun-test/src/main/java/com/hchyun/test/controller/TestTreeController.java b/hchyun/hchyun-test/src/main/java/com/hchyun/test/controller/TestTreeController.java
new file mode 100644
index 0000000..7cad1b9
--- /dev/null
+++ b/hchyun/hchyun-test/src/main/java/com/hchyun/test/controller/TestTreeController.java
@@ -0,0 +1,164 @@
+package com.hchyun.test.controller;
+
+import java.io.Serializable;
+import java.util.List;
+import java.util.regex.Pattern;
+
+
+import com.hchyun.common.constant.ReturnConstants;
+import com.hchyun.common.core.controller.HcyBaseController;
+import com.hchyun.common.utils.ServerResult;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.hchyun.common.annotation.Log;
+import com.hchyun.common.core.entity.AjaxResult;
+import com.hchyun.common.enums.BusinessType;
+import com.hchyun.test.entity.TestTree;
+import com.hchyun.test.service.TestTreeService;
+import com.hchyun.common.utils.poi.ExcelUtil;
+
+/**
+ * 树测试Controller
+ *
+ * @author hchyun
+ * @date 2021-01-23
+ */
+@RestController
+@RequestMapping("/test/tree")
+public class TestTreeController extends HcyBaseController {
+ protected final Logger logger = LoggerFactory.getLogger(TestTreeController.class);
+
+ @Autowired
+ private TestTreeService testTreeService;
+
+ /**
+ * 查询树测试列表
+ */
+ @PreAuthorize("@ss.hasPermi('test:tree:list')")
+ @GetMapping("/list")
+ public AjaxResult list(TestTree testTree)
+ {
+ ServerResult