李林
2024-03-05 dd7cf6b7d8da76c7ceb0ae79fe57fb72ce1c3eb5
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
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.StandardMethodList;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
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 data1,String data2,String data3,String data4, String data5);
 
    List<StandardProductList> selectParameterList(String code);
 
}