zhuo
2025-03-29 f682213b9ff8a7d41ea16edfb1b68d996c46e080
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.ruoyi.basic.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.basic.pojo.StandardMethodList;
import com.ruoyi.basic.pojo.StandardProductList;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
* @author Administrator
* @description 针对表【standard_method_list(标准树下的标准列表)】的数据库操作Mapper
* @createDate 2024-03-04 13:44:04
* @Entity com.ruoyi.basic.pojo.StandardMethodList
*/
public interface StandardMethodListMapper extends BaseMapper<StandardMethodList> {
 
    Map<String, String> selectStandardMethodById(@Param("id") Integer id);
 
    String selectUserById(@Param("id") Integer id);
 
    List<StandardMethodList> selectStandardMethodLists(@Param("tree") String tree);
 
    List<StandardMethodList> selectStandardMethodListsByNull(@Param("tree") String tree);
 
    List<StandardMethodList> selectStandardMethodLists3(@Param("tree") String tree);
 
    List<StandardProductList> selectParameterList(@Param("code") String code);
 
    List<StandardMethodList> selectListEnum();
 
    Integer getStandardMethodId(@Param("code") String code);
}