zhuo
2025-04-23 234b0ac195934b34c06045b2d2ef0f10e239dd8e
basic-server/src/main/java/com/ruoyi/basic/mapper/StandardMethodMapper.java
@@ -3,9 +3,12 @@
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.basic.pojo.StandardMethodList;
import com.ruoyi.framework.mybatis_config.MyBaseMapper;
import com.ruoyi.basic.pojo.StandardMethod;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @author Administrator
@@ -17,7 +20,18 @@
    IPage<StandardMethod> selectStandardMethodList(Page page, @Param("ew") QueryWrapper<StandardMethod> ew);
    StandardMethod selectStandMethodById(Integer id);
    StandardMethod selectStandMethodById(@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<StandardMethodList> selectListEnum();
    Integer getStandardMethodId(@Param("code") String code);
}