李林
2024-03-04 467697f78bf5c953a81a978e5f2e67737de45569
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.StandardMethodList;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
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);
 
}