From 6da57b610d97be3f79084d43440e7823d707b249 Mon Sep 17 00:00:00 2001
From: hyingbo <1363390067@qq.com>
Date: 星期四, 04 九月 2025 17:54:55 +0800
Subject: [PATCH] 设备管理调整

---
 lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/IEamEquipmentService.java |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/IEamEquipmentService.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/IEamEquipmentService.java
index 1140567..f1c1eda 100644
--- a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/IEamEquipmentService.java
+++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/IEamEquipmentService.java
@@ -1,9 +1,15 @@
 package org.jeecg.modules.eam.service;
 
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.jeecg.modules.eam.dto.EquipmentCategoryStatistics;
 import org.jeecg.modules.eam.entity.EamEquipment;
 import com.baomidou.mybatisplus.extension.service.IService;
+import org.jeecg.modules.eam.request.EamEquipmentQuery;
 import org.jeecg.modules.eam.vo.EamEquipmentTree;
+import org.jeecg.modules.eam.vo.EquipmentSearchResult;
+import org.springframework.web.servlet.ModelAndView;
 
+import javax.servlet.http.HttpServletRequest;
 import java.util.List;
 
 /**
@@ -26,4 +32,31 @@
      * @return
      */
     List<EamEquipmentTree> loadTreeListByProductionIds(String ids);
+
+    /**
+     * 璁惧鍙拌处鍒嗛〉鏌ヨ
+     * @param page
+     * @param eamEquipment
+     * @return
+     */
+    IPage<EamEquipment> queryPageList(IPage<EamEquipment> page, EamEquipmentQuery eamEquipment);
+
+    /**
+     * 鍏抽敭瀛楁悳绱�
+     * @param keyword
+     * @param pageSize
+     * @return
+     */
+    List<EquipmentSearchResult> asyncLoadEquipment(String keyword, Integer pageSize, String id);
+
+    /**
+     * 鏌ヨ璁惧淇℃伅
+     * @param equipmentCode
+     * @return
+     */
+    EamEquipment selectByEquipmentCode(String equipmentCode);
+
+    List<EquipmentCategoryStatistics> queryLedgerStatistics();
+
+    ModelAndView exportLedgerStatisticsXls(HttpServletRequest request, Class<EquipmentCategoryStatistics> equipmentCategoryStatisticsClass, String 鍙拌处缁熻);
 }

--
Gitblit v1.9.3