package org.jeecg.modules.system.mapper; import java.util.List; import java.util.Map; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.toolkit.Constants; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import org.jeecg.modules.system.entity.SysCategory; import org.jeecg.modules.system.model.TreeSelectModel; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * @Description: 分类字典 * @Author: jeecg-boot * @Date: 2019-05-29 * @Version: V1.0 */ public interface SysCategoryMapper extends BaseMapper { /** * 根据父级ID查询树节点数据 * @param pid * @param query * @return */ public List queryListByPid(@Param("pid") String pid,@Param("query") Map query); /** * 通过code查询分类字典表 * @param code * @return */ @Select("SELECT ID FROM sys_category WHERE CODE = #{code,jdbcType=VARCHAR}") public String queryIdByCode(@Param("code") String code); List listByParams(@Param(Constants.WRAPPER) QueryWrapper queryWrapper); }