瀏覽代碼

feature: 表分类属于多个树节点展示问题解决

mazq 2 年之前
父節點
當前提交
bc700b8ec6

+ 20 - 0
src/main/java/com/dragoninfo/dcuc/authweb/restcontroller/sub/ColumnRelationController.java

@@ -0,0 +1,20 @@
+package com.dragoninfo.dcuc.authweb.restcontroller.sub;
+
+import com.dragoninfo.dcuc.app.facade.sub.IAppColumnRelationFacaed;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @author mazq
+ * @date 2022/10/5
+ */
+@RestController
+public class ColumnRelationController {
+
+    @Autowired
+    private IAppColumnRelationFacaed appColumnRelationFacaed;
+
+
+
+
+}