wangbo 4 anos atrás
pai
commit
c96b102c5d

+ 15 - 0
sms_water/src/main/java/com/huaxu/controller/AppPageReportController.java

@@ -1,4 +1,19 @@
 package com.huaxu.controller;
 
+
+import io.swagger.annotations.Api;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @description
+ * @auto wangbo
+ * @data 2021/3/18 10:50
+ */
+@RestController
+@RequestMapping("/appPageReport")
+@Api(tags = "App总览报表")
 public class AppPageReportController {
+
+
 }

+ 4 - 0
sms_water/src/main/java/com/huaxu/service/AppPageReportService.java

@@ -0,0 +1,4 @@
+package com.huaxu.service;
+
+public interface AppPageReportService {
+}

+ 17 - 0
sms_water/src/main/java/com/huaxu/service/impl/AppPageReportServiceImpl.java

@@ -0,0 +1,17 @@
+package com.huaxu.service.impl;
+
+import com.huaxu.service.AppPageReportService;
+import org.springframework.stereotype.Service;
+
+
+/**
+ * @description
+ * @auto wangbo
+ * @data 2021/3/18 11:00
+ */
+@Service
+public class AppPageReportServiceImpl implements AppPageReportService {
+
+
+
+}