| | |
| | | package org.jeecg.modules.qms.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.jeecg.modules.qms.entity.InspectionItem; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 检验项目 |
| | |
| | | */ |
| | | public interface IInspectionItemService extends IService<InspectionItem> { |
| | | |
| | | IPage<Map<String, Object>> queryList(Integer pageNo, Integer pageSize, Map<String, String> query); |
| | | |
| | | IPage<Map<String, Object>> queryListByPlanId(Integer pageNo, Integer pageSize, String inspectionPlanId); |
| | | } |