| | |
| | | package com.sinata.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.sinata.system.domain.MwMicroEquipment; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.sinata.system.domain.query.StorageRecordQuery; |
| | | import com.sinata.system.domain.vo.MwMedicalWasteBoxVO; |
| | | import com.sinata.system.domain.vo.MwMicroEquipmentVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | @Mapper |
| | | public interface MwMicroEquipmentMapper extends BaseMapper<MwMicroEquipment> { |
| | | /** |
| | | * 设备管理分页列表 |
| | | * |
| | | * @param page |
| | | * @param equipmentName |
| | | * @param status |
| | | * @param treeCode |
| | | * @return |
| | | */ |
| | | Page<MwMicroEquipmentVO> pageList(Page<MwMicroEquipmentVO> page, @Param("equipmentName") String equipmentName, @Param("status") Integer status, @Param("equipmentNumber") String equipmentNumber, @Param("treeCode") String treeCode); |
| | | |
| | | /** |
| | | * 待处理的医废列表 |
| | | * |
| | | * @param page |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Page<MwMedicalWasteBoxVO> storedMedicalWastePage(Page<MwMedicalWasteBoxVO> page, @Param("query") StorageRecordQuery query, @Param("treeCode") String treeCode); |
| | | } |