From ebd79c8749eea0c4b3ca88b4eac0229cb11d1684 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 28 四月 2026 16:35:58 +0800
Subject: [PATCH] refactor(ai): 优化审批待办意图执行器的模式匹配逻辑
---
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