package cn.stylefeng.guns.sys.modular.rest.mapper; import cn.stylefeng.guns.base.pojo.node.ZTreeNode; import cn.stylefeng.guns.sys.modular.rest.entity.RestDict; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 基础字典 Mapper 接口 *

* * @author stylefeng * @since 2019-03-13 */ public interface RestDictMapper extends BaseMapper { /** * 获取ztree的节点列表 */ List dictTree(@Param("dictTypeId") Long dictTypeId); /** * where parentIds like '' */ List likeParentIds(@Param("dictId") Long dictId); }