| | |
| | | package com.yuanchu.limslaboratory.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Product; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | List<Product> selectProductByMaterialId(String materialId); |
| | | |
| | | Map<String, Object> getProductInformation(Integer productId); |
| | | IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Page<Objects> page); |
| | | |
| | | Map<String, Object> selectOneChildren(Object father); |
| | | } |