JYW
2024-04-29 a9015e429e40f83afdffd43552d34b82e67a75ff
cnas-server/src/main/java/com/yuanchu/mom/mapper/SealMapper.java
@@ -4,10 +4,14 @@
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);
}