package com.moral.mapper; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; public interface OrganizationRelationMapper { List> getChildIdByParentId(@Param("parentIdList") List parentIdList); Integer getParentIdByChildId(@Param("childId") Integer childId); }