From c3a981e80973ac52b5988aca62b87409976c6fb1 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期四, 18 六月 2026 13:09:28 +0800
Subject: [PATCH] 1.计量器具台账上传附件报错 2.质量拉的数据不对(未明确) 3.计量器具台账逾期的做标红提醒 4.设备保养定时任务和记录要加上具体的保养内容 5.质量要区分质检规则抽检还是全检,抽检的话是抽多少百分比 6.供应商管理东西太少了,没有资质文件啊这些东西(是不是可以参考pro) 7.采购审批把人从李莹莹改成龙红星

---
 src/main/java/com/ruoyi/warehouse/service/DocumentationService.java |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/ruoyi/warehouse/service/DocumentationService.java b/src/main/java/com/ruoyi/warehouse/service/DocumentationService.java
index f18de3d..8efa2b8 100644
--- a/src/main/java/com/ruoyi/warehouse/service/DocumentationService.java
+++ b/src/main/java/com/ruoyi/warehouse/service/DocumentationService.java
@@ -6,8 +6,9 @@
 import com.ruoyi.warehouse.pojo.Documentation;
 import com.baomidou.mybatisplus.extension.service.IService;
 
-import javax.servlet.http.HttpServletResponse;
+import jakarta.servlet.http.HttpServletResponse;
 import java.util.List;
+import java.util.Map;
 
 /**
 * @author 86151
@@ -16,9 +17,24 @@
 */
 public interface DocumentationService extends IService<Documentation> {
 
-    List<DocumentationDto> listPage(Page page, Documentation documentation);
+    IPage<DocumentationDto> listPage(Page page, Documentation documentation);
 
     void export(HttpServletResponse response,Documentation documentation);
 
     boolean deleteByIds(List<Long> ids);
+
+    List<DocumentationDto> listAll();
+    Integer getTotalDocsCount();
+
+    Integer getCategoryNumCount();
+
+    Integer getBorrowedDocsCount();
+
+    Integer getMonthlyAddedDocsCount();
+
+
+    List<Map<String, Object>> getCategoryDistribution();
+
+
+    List<Map<String, Object>> getStatusDistribution();
 }

--
Gitblit v1.9.3