| | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.basic.dto.CopyStandardProductListDto; |
| | | import com.ruoyi.basic.dto.InsSampleReceiveDto; |
| | | import com.ruoyi.basic.dto.ResetTreeDragDTO; |
| | | import com.ruoyi.basic.pojo.InsSample1; |
| | | import com.ruoyi.basic.pojo.StandardProductList; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | int delStandardProduct(JSONArray list); |
| | | |
| | | List<StandardProductList> selectStandardProductList(InsSampleReceiveDto insSample); |
| | | List<StandardProductList> selectStandardProductList(InsSample1 insSample); |
| | | |
| | | Map<String, Object> selectStandardProductListByMethodId(Integer id, String tree, Integer page); |
| | | |
| | |
| | | |
| | | Map<String, List<?>> selectStandardProductEnumByMethodId(Integer id, String tree, String item); |
| | | |
| | | boolean updateSection(StandardProductList list); |
| | | |
| | | /** |
| | | * 标准库拖拽 |
| | | * @param resetTreeDragDTO |
| | | */ |
| | | void resetTreeDrag(ResetTreeDragDTO resetTreeDragDTO); |
| | | |
| | | /** |
| | | * 标准库拖拽 |
| | | * @param standardProductLists |
| | | */ |
| | | void resetTreeDragBatch(List<StandardProductList> standardProductLists); |
| | | |
| | | /** |
| | | * 检验项要求值对比 |
| | | * @param copyStandardProductListDto |
| | | * @return |
| | | */ |
| | | List<StandardProductList> copyStandardProductList(CopyStandardProductListDto copyStandardProductListDto); |
| | | |
| | | /** |
| | | * 检验项要求值对比一个 |
| | | * @param copyStandardProductListDto |
| | | * @return |
| | | */ |
| | | List<StandardProductList> copyStandardProductOne(CopyStandardProductListDto copyStandardProductListDto); |
| | | |
| | | /** |
| | | * 检验项复制排序 |
| | | * @param copyStandardProductListDto |
| | | * @return |
| | | */ |
| | | boolean copyStandardProductSort(CopyStandardProductListDto copyStandardProductListDto); |
| | | } |