| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Specifications; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2023-07-11 |
| | | */ |
| | | @Repository |
| | | public interface SpecificationsMapper extends BaseMapper<Specifications> { |
| | | |
| | | Map<String, Object> selectSNameSNName(int materialId); |
| | | |
| | | IPage<Map<String, Objects>> listSpecificationsInformation(String specificationsName, String serialNumberId, Page<Objects> page); |
| | | |
| | | |
| | | //根据型号id查询物料名称 |
| | | String selMateName(Integer standardId); |
| | | } |