¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.basic.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.basic.pojo.StandardProductList; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | | * @description é对表ãstandard_product_list(æ åæ ä¸çæ£éªé¡¹ç®)ãçæ°æ®åºæä½Mapper |
| | | * @createDate 2024-03-05 10:33:29 |
| | | * @Entity com.ruoyi.basic.pojo.StandardProductList |
| | | */ |
| | | public interface StandardProductListMapper extends BaseMapper<StandardProductList> { |
| | | |
| | | IPage<StandardProductList> standardProductListIPage(@Param("id") Integer id, @Param("tree") String tree, IPage<StandardProductList> page, @Param("laboratory") String laboratory, @Param("insItem") String insItem, @Param("insItems") String insItems); |
| | | |
| | | StandardProductList getOne(@Param("standardMethodListId") Integer standardMethodListId, @Param("inspectionItem") String inspectionItem, @Param("sample") String sample, @Param("inspectionItemSubclass") String inspectionItemSubclass, @Param("model") String model, @Param("inspectionItemClass") String inspectionItemClass); |
| | | |
| | | List<StandardProductList> selectDetail(@Param("standardMethodListId") Integer standardMethodListId, @Param("state") int state, @Param("model") String model, @Param("isCableTag") String isCableTag); |
| | | |
| | | List<StandardProductList> selectDetail2(@Param("standardMethodListId") Integer standardMethodListId, @Param("state") int state, @Param("tree") String tree, @Param("isCableTag") String isCableTag); |
| | | |
| | | /** |
| | | * æ¥è¯¢é¶ä»¶é¢è² |
| | | * @param partNo |
| | | * @return |
| | | */ |
| | | Map<String, String> selectPartColor(@Param("partNo") String partNo); |
| | | |
| | | /** |
| | | * åºé´ä¿®æ¹ |
| | | * @param productList |
| | | * @return |
| | | */ |
| | | void updateSection(@Param("productList") StandardProductList productList); |
| | | |
| | | |
| | | /** |
| | | * ä»ä¸å¾ä¸ä¿®æ¹é¡ºåº |
| | | * @param beginIndex å¼å§ä½ç½® |
| | | * @param endIndex ç»æä½ç½® |
| | | * @param methodId æ åid |
| | | * @param tree æ |
| | | */ |
| | | void updateSortUp(@Param("beginIndex") Integer beginIndex, |
| | | @Param("endIndex") Integer endIndex, |
| | | @Param("methodId") Integer methodId, |
| | | @Param("tree") String tree); |
| | | |
| | | /** |
| | | * ä»ä¸ç½ä¸ä¿®æ¹é¡ºåº |
| | | * @param beginIndex |
| | | * @param endIndex |
| | | * @param methodId |
| | | * @param tree |
| | | */ |
| | | void updateSortDown(@Param("beginIndex") Integer beginIndex, |
| | | @Param("endIndex") Integer endIndex, |
| | | @Param("methodId") Integer methodId, |
| | | @Param("tree") String tree); |
| | | } |
| | | |
| | | |
| | | |
| | | |