| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Report; |
| | | import com.yuanchu.limslaboratory.pojo.vo.ReportCheckVo; |
| | | import com.yuanchu.limslaboratory.pojo.vo.ReportVo; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * 查询检验报告 |
| | | * @return |
| | | */ |
| | | IPage<ReportVo> selectAllReport(Page<Object> page, Integer status, String name); |
| | | IPage<ReportVo> selectAllReport(Page<Object> page, Integer status, String name,Integer id,boolean checked); |
| | | |
| | | /** |
| | | * 查询报告审核 |
| | | * @return |
| | | */ |
| | | IPage<ReportCheckVo> selectAllReportCheck(Page<Object> page, Integer status, String name); |
| | | Map<String, Object> getReportContext(String code); |
| | | |
| | | |
| | | } |
| | | |