com.lframework.starter.mybatis.mappers.system.RecursionMappingMapper Maven / Gradle / Ivy
package com.lframework.starter.mybatis.mappers.system;
import com.lframework.starter.mybatis.entity.RecursionMapping;
import com.lframework.starter.mybatis.mapper.BaseMapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
/**
*
* 递归映射 Mapper 接口
*
*
* @author zmj
* @since 2021-06-27
*/
public interface RecursionMappingMapper extends BaseMapper {
List getNodeChildIds(@Param("nodeId") String nodeId, @Param("nodeType") Integer nodeType);
}