| | |
| | | package com.moral.mapper;
|
| | |
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | |
|
| | | import com.moral.common.mapper.BaseMapper;
|
| | | import com.moral.entity.OrganizationRelation;
|
| | | import com.moral.entity.OrganizationRelationExample;
|
| | |
|
| | | @Mapper
|
| | | public interface OrganizationRelationMapper extends BaseMapper<OrganizationRelation, OrganizationRelationExample, Integer> {
|
| | | public interface OrganizationRelationMapper extends BaseMapper<OrganizationRelation> {
|
| | | |
| | | List<Map<String, Object>> getChildIdByParentId(@Param("parentIdList") List<Object> parentIdList);
|
| | | |
| | | } |