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 { Map selectStandardMethodById(Integer id); String selectUserById(Integer id); List selectStandardMethodLists(String tree); List selectStandardMethodListsByNull(String tree); List selectStandardMethodLists3(String tree); List selectStandardMethodLists2(String data1,String data2,String data3,String data4, String data5); List selectParameterList(String code); List selectListEnum(); Integer getStandardMethodId(String code); String getStandardMethodName(String code); }