net.mingsoft.organization.dao.IEmployeeDao 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.base.entity.BaseEntity;
import net.mingsoft.organization.entity.EmployeeEntity;
import org.apache.ibatis.annotations.Param;
/**
* 员工持久层
* @author 铭飞开源团队
* 创建日期:2020-1-6 18:25:28
* 历史修订:
*/
public interface IEmployeeDao extends IBaseDao {
/**
* 查询角色所拥有model权限
* @param ids
* @return
*/
public List queryModelByRoleIds(@Param("ids") int[] ids);
/**
* 组织机构Id
* @param employeeEntity
* @return
*/
List queryListByOrganization(EmployeeEntity employeeEntity);
}