ZhuDongming
2019-09-04 b96cdf306e9124f93e5ca33e006728a2f4552c4d
src/main/java/com/moral/mapper/OrganizationRelationMapper.java
@@ -1,10 +1,16 @@
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);
}