From e334d8afd0a654aa845f720122b876807459b90d Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期二, 09 九月 2025 17:56:26 +0800
Subject: [PATCH] 设备调拨、借用、归还流程审批调整

---
 lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/controller/DncHomeController.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/controller/DncHomeController.java b/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/controller/DncHomeController.java
new file mode 100644
index 0000000..480626c
--- /dev/null
+++ b/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/controller/DncHomeController.java
@@ -0,0 +1,49 @@
+package org.jeecg.modules.dnc.controller;
+
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.common.api.vo.Result;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @author Lyh
+ * @Description: DNC棣栭〉鎺ュ彛
+ * @date 2024/3/13 14:27
+ */
+@Slf4j
+@Api(tags = "DNC棣栭〉鎺ュ彛")
+@RestController
+@RequestMapping("/dnc/home")
+
+//todo dnc棣栭〉鐩稿叧鎺ュ彛寰呭畾
+public class DncHomeController {
+
+    /**
+     * 涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅鍒楄〃
+     * @return
+     */
+    @ApiOperation(value = "涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅鍒楄〃", notes = "涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅鍒楄〃")
+    @GetMapping(value = "/syncProcessSpecificationInfo")
+    public Result<?> syncProcessSpecificationInfo() {
+        return Result.ok();
+    }
+
+    /**
+     * 涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅棰嗗彇鎸傞潬浜у搧缁撴瀯鏍�
+     * @param id
+     * @return
+     */
+    @ApiOperation(value = "涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅棰嗗彇鎸傞潬浜у搧缁撴瀯鏍�", notes = "涓夌淮宸ヨ壓宸ヨ壓瑙勭▼淇℃伅棰嗗彇鎸傞潬浜у搧缁撴瀯鏍�")
+    @GetMapping(value = "/receiveTree")
+    public Result<?> syncProcessSpecificationInfoTree(@RequestParam(name = "id") String id) throws JsonProcessingException {
+        return Result.ok();
+    }
+
+}

--
Gitblit v1.9.3