Răsfoiți Sursa

redis 地址恢复

Huanyi 1 lună în urmă
părinte
comite
8229fe6b8f

+ 23 - 0
ruoyi-admin/src/main/java/org/dromara/web/controller/ReportController.java

@@ -0,0 +1,23 @@
+package org.dromara.web.controller;
+
+import lombok.RequiredArgsConstructor;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @Author: Huanyi
+ * @CreateTime: 2025-08-18
+ * @Description:
+ * @Version: 1.0
+ */
+
+@Validated
+@RestController
+@RequiredArgsConstructor
+@RequestMapping("/report")
+public class ReportController {
+
+
+
+}