¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.basic.service; |
| | | |
| | | 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.StandardProductList; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | | * @description é对表ãstandard_product_list(æ åæ ä¸çæ£éªé¡¹ç®)ãçæ°æ®åºæä½Service |
| | | * @createDate 2024-03-05 10:33:29 |
| | | */ |
| | | public interface StandardProductListService extends IService<StandardProductList> { |
| | | |
| | | int upStandardProductList(StandardProductList list); |
| | | |
| | | int delStandardProduct(JSONArray list); |
| | | |
| | | List<StandardProductList> selectStandardProductList(InsSampleReceiveDto insSample); |
| | | |
| | | Map<String, Object> selectStandardProductListByMethodId(Integer id, String tree, Integer page); |
| | | |
| | | IPage<StandardProductList> selectStandardProductByMethodId(Integer id, String tree, Integer page, String laboratory, String item, String items); |
| | | |
| | | 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); |
| | | } |