|
@@ -0,0 +1,32 @@
|
|
|
|
+package com.boman.report.controller;
|
|
|
|
+
|
|
|
|
+import com.boman.common.core.web.controller.BaseController;
|
|
|
|
+import com.boman.domain.dto.AjaxResult;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+@RestController
|
|
|
|
+@RequestMapping("/statistic/report")
|
|
|
|
+public class StatisticReportController extends BaseController {
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取报表id集合
|
|
|
|
+ *
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @RequestMapping("/datas")
|
|
|
|
+ public AjaxResult getReports() {
|
|
|
|
+ return AjaxResult.success();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 列表
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @RequestMapping("/list")
|
|
|
|
+ public AjaxResult list() {
|
|
|
|
+ startPage();
|
|
|
|
+
|
|
|
|
+ return AjaxResult.success();
|
|
|
|
+ }
|
|
|
|
+}
|