zss
2025-03-15 fdde707bb95af657d838426f1329128b1ff167ab
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
35
36
37
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.StandardMethodList;
import com.yuanchu.mom.pojo.StandardProductList;
 
import java.util.List;
import java.util.Map;
 
/**
* @author Administrator
* @description 针对表【standard_method_list(标准树下的标准列表)】的数据库操作Mapper
* @createDate 2024-03-04 13:44:04
* @Entity com.yuanchu.mom.pojo.StandardMethodList
*/
public interface StandardMethodListMapper extends BaseMapper<StandardMethodList> {
 
    Map<String, String> selectStandardMethodById(Integer id);
 
    String selectUserById(Integer id);
 
    List<StandardMethodList> selectStandardMethodLists(String tree);
 
    List<StandardMethodList> selectStandardMethodListsByNull(String tree);
 
    List<StandardMethodList> selectStandardMethodLists3(String tree);
 
    List<StandardMethodList> selectStandardMethodLists2(String data1,String data2,String data3,String data4, String data5);
 
    List<StandardProductList> selectParameterList(String code);
 
    List<StandardMethodList> selectListEnum();
 
    Integer getStandardMethodId(String code);
 
    String getStandardMethodName(String code);
}