From 13301ea21fe2a1c5878050780d6bd946871e27c3 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 12 六月 2023 10:16:30 +0800
Subject: [PATCH] 数据统计修改数据量统计接口,添加按文件类型统计、按项目统计数据接口

---
 src/main/java/com/lf/server/service/sys/ReportService.java |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/service/sys/ReportService.java b/src/main/java/com/lf/server/service/sys/ReportService.java
index 2f662dd..ced9c23 100644
--- a/src/main/java/com/lf/server/service/sys/ReportService.java
+++ b/src/main/java/com/lf/server/service/sys/ReportService.java
@@ -94,6 +94,11 @@
     }
 
     @Override
+    public List<CountEntity> countSizesByType() {
+        return reportMapper.countSizesByType();
+    }
+
+    @Override
     public List<CountEntity> countServices() {
         return reportMapper.countServices();
     }
@@ -103,6 +108,11 @@
         return reportMapper.countOperates();
     }
 
+    @Override
+    public List<CountEntity> countSizesByPrj() {
+        return reportMapper.countSizesByPrj();
+    }
+
     /**
      * 鍒涘缓鎶ュ憡
      */

--
Gitblit v1.9.3