| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.pojo.Certification; |
| | | |
| | | import com.yuanchu.mom.pojo.Laboratory; |
| | | import com.yuanchu.mom.pojo.Seal; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface SealMapper extends BaseMapper<Seal> { |
| | | IPage<Seal> selectSeal(Page page, QueryWrapper<Seal> ew); |
| | | IPage<Seal>selectSeal(Page page, QueryWrapper<Seal> ew); |
| | | List<Laboratory> selectLaboratory (Integer labId); |
| | | |
| | | } |