From 0852acae13603be95eaaa0b501f3441508ff3fe5 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期一, 14 四月 2025 09:52:12 +0800 Subject: [PATCH] 大屏统计修改 --- medicalWaste-system/src/main/java/com/sinata/system/mapper/MwProtectionEquipmentMapper.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 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 124764a..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 @@ -1,8 +1,15 @@ package com.sinata.system.mapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 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> @@ -14,5 +21,29 @@ */ @Mapper public interface MwProtectionEquipmentMapper extends BaseMapper<MwProtectionEquipment> { + /** + * 防护器具分页列表 + * + * @param page + * @param query + * @param treeCode + * @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