ÎļþÃû´Ó inspection-server/src/main/java/com/yuanchu/limslaboratory/service/ReportCheckService.java ÐÞ¸Ä |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.Report; |
| | | import com.yuanchu.limslaboratory.pojo.vo.ReportCheckVo; |
| | | import com.yuanchu.limslaboratory.pojo.vo.ReportAuditingVo; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @author æ±èéµ·éç½ç»ç§ææéå
¬å¸ |
| | | * @since 2023-08-07 |
| | | */ |
| | | public interface ReportCheckService extends IService<Report> { |
| | | public interface ReportAuditingService extends IService<Report> { |
| | | |
| | | /** |
| | | * 项ç®å®¡æ ¸è¡¨æ¥è¯¢ |
| | | * @return |
| | | */ |
| | | IPage<ReportCheckVo> selectAllReportCheck(Page<Object> page, Integer status, String name); |
| | | IPage<ReportAuditingVo> selectAllReportAuditing(Page<Object> page, Integer status, String name); |
| | | } |
| | | |