| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TQaProduceReport; |
| | | import com.ruoyi.system.query.TQaProduceReportQuery; |
| | | import com.ruoyi.system.vo.TQaProduceReportVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TQaProduceReportService extends IService<TQaProduceReport> { |
| | | |
| | | /** |
| | | * 获取中试、生产验证分析报告;辅料;产品报告管理分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TQaProduceReportVO> pageList(TQaProduceReportQuery query); |
| | | /** |
| | | * 获取中试、生产验证分析报告;辅料;产品报告管理分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TQaProduceReportVO> evaluateList(TQaProduceReportQuery query); |
| | | } |