From 0184bf471382f9328df9bdd47acf451e4e2c5cb0 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期三, 11 六月 2025 13:57:37 +0800
Subject: [PATCH] 达梦数据库及数据库脚本

---
 medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java b/medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java
index 315828f..324a673 100644
--- a/medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java
+++ b/medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java
@@ -4,9 +4,12 @@
 import com.sinata.system.domain.MwProtectionEquipment;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.sinata.system.domain.query.MwProtectionEquipmentQuery;
+import com.sinata.system.domain.vo.MwProtectionEquipmentRecordVO;
 import com.sinata.system.domain.vo.MwProtectionEquipmentVO;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
 
 /**
  * <p>
@@ -27,4 +30,20 @@
      * @return
      */
     Page<MwProtectionEquipmentVO> pageList(Page<MwProtectionEquipmentVO> page, @Param("query") MwProtectionEquipmentQuery query, @Param("treeCode") String treeCode);
+
+    /**
+     * 增减记录分页列表
+     *
+     * @param page
+     * @param id
+     * @return
+     */
+    Page<MwProtectionEquipmentRecordVO> recordPage(Page<MwProtectionEquipmentRecordVO> page, @Param("id") Long id);
+
+    /**
+     * 防护器具列表
+     *
+     * @return
+     */
+    List<MwProtectionEquipmentVO> queryList();
 }

--
Gitblit v1.7.1