对比新文件 |
| | |
| | | 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.Specifications; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | |
| | | /** |
| | | * <p> |
| | | * Mapper 鎺ュ彛 |
| | | * </p> |
| | | * |
| | | * @author 姹熻嫃榈烽洀缃戠粶绉戞妧鏈夐檺鍏徃 |
| | | * @since 2023-07-11 |
| | | */ |
| | | public interface SpecificationsMapper extends BaseMapper<Specifications> { |
| | | |
| | | Map<String, Object> selectSNameSNName(int materialId); |
| | | |
| | | IPage<Map<String, Objects>> listSpecificationsInformation(String specificationsName, String serialNumberId, Page<Objects> page); |
| | | } |