|
@@ -0,0 +1,25 @@
|
|
|
+package com.pig4cloud.pig.statistics.controller;
|
|
|
+
|
|
|
+
|
|
|
+import com.pig4cloud.pig.statistics.service.RetentionAnalyseService;
|
|
|
+import io.swagger.v3.oas.annotations.security.SecurityRequirement;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import org.springframework.http.HttpHeaders;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: lwh
|
|
|
+ * @date: 2025-08-22
|
|
|
+ * @description: 留存分析
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/retn")
|
|
|
+@Tag(description = "retentionAnalyse", name = "留存分析")
|
|
|
+@SecurityRequirement(name = HttpHeaders.AUTHORIZATION)
|
|
|
+public class RetentionAnalyseController
|
|
|
+{
|
|
|
+ private final RetentionAnalyseService retentionAnalyseService;
|
|
|
+}
|