From 5bb169a50335aef427d09e817901b80145cbd990 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期一, 09 三月 2026 17:56:31 +0800
Subject: [PATCH] fix: 使用父类id关联
---
src/main/java/com/ruoyi/prodDemand/controller/ProdDemandDetailController.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/prodDemand/controller/ProdDemandDetailController.java b/src/main/java/com/ruoyi/prodDemand/controller/ProdDemandDetailController.java
new file mode 100644
index 0000000..64e4478
--- /dev/null
+++ b/src/main/java/com/ruoyi/prodDemand/controller/ProdDemandDetailController.java
@@ -0,0 +1,24 @@
+package com.ruoyi.prodDemand.controller;
+
+import com.ruoyi.prodDemand.service.ProdDemandDetailService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * <br>
+ * 閿�鍞敓浜ч渶姹�-鏄庣粏鎺у埗灞�
+ * </br>
+ *
+ * @author deslrey
+ * @version 1.0
+ * @since 2026/03/09 17:17
+ */
+@RestController
+@RequestMapping("/ProdDemandDetail")
+public class ProdDemandDetailController {
+
+ @Autowired
+ private ProdDemandDetailService prodDemandDetailService;
+
+}
--
Gitblit v1.9.3