All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.organization.dao.IEmployeeDao Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy