|
@@ -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 {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|