| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TQaTestItemReport; |
| | | import com.ruoyi.system.query.TQaTestItemReportQuery; |
| | | import com.ruoyi.system.vo.TQaTestItemReportVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TQaTestItemReportService extends IService<TQaTestItemReport> { |
| | | |
| | | /** |
| | | * 获取检测项报告列表 |
| | | * @param itemId |
| | | * @return |
| | | */ |
| | | List<TQaTestItemReportVO> getList(String itemId); |
| | | |
| | | /** |
| | | * 获取检测项报告分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TQaTestItemReportVO> pageList(TQaTestItemReportQuery query); |
| | | } |