From f0be60fb93e662bf6b8147b9f5f9c5a9b3e0e8b9 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期三, 01 四月 2026 11:32:05 +0800
Subject: [PATCH] fix: 工序参数配置页面分页展示有误,添加分页

---
 src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java b/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
index a36a143..54c642e 100644
--- a/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
+++ b/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
@@ -48,14 +48,10 @@
     }
 
     @Override
-    public List<DocumentClassificationTreeDto> selectDocumentClassificationList(DocumentClassificationDto documentClassificationDto) {
+    public List<DocumentClassificationTreeDto> selectDocumentClassificationList() {
         // 鏌ヨ鏍硅妭鐐癸紙parentId 涓� null锛�
         LambdaQueryWrapper<DocumentClassification> queryWrapper = new LambdaQueryWrapper<>();
         queryWrapper.isNull(DocumentClassification::getParentId);
-
-        if (documentClassificationDto.getCategory() != null && !documentClassificationDto.getCategory().isEmpty()) {
-            queryWrapper.like(DocumentClassification::getCategory, documentClassificationDto.getCategory());
-        }
 
         // 鏌ヨ鏍硅妭鐐瑰垪琛�
         List<DocumentClassification> rootList = baseMapper.selectList(queryWrapper);

--
Gitblit v1.9.3