net.mingsoft.organization.dao.IOrganizationDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-morganization Show documentation
Show all versions of ms-morganization Show documentation
ms-morganization tools Library
package net.mingsoft.organization.dao;
import net.mingsoft.base.dao.IBaseDao;
import java.util.*;
import net.mingsoft.organization.entity.OrganizationEntity;
import org.apache.ibatis.annotations.Param;
/**
* 部门管理持久层
* @author 铭飞开源团队
* 创建日期:2020-1-16 9:46:15
* 历史修订:
*/
public interface IOrganizationDao extends IBaseDao {
/**
* 查找所有子集
* @param id
* @return
*/
List queryChildren(@Param("id") int id);
}