| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.pojo.ProcessReport; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * 检验报告发放登记表 Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-05 08:58:39 |
| | | */ |
| | | public interface ProcessReportMapper extends BaseMapper<ProcessReport> { |
| | | |
| | | IPage<ProcessReport> pageProcessReport(Page page, @Param("ew") QueryWrapper<ProcessReport> queryWrappers); |
| | | |
| | | List<ProcessReport> getIds(List<Integer> ids); |
| | | List<ProcessReport> getIds(@Param("ids") List<Integer> ids); |
| | | } |