| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.system.domain.dto.MgtStaffPageDto; |
| | | import com.ruoyi.system.domain.pojo.staff.SysStaff; |
| | | import com.ruoyi.system.api.domain.poji.sys.SysStaff; |
| | | import com.ruoyi.system.domain.vo.DeptSimpleVo; |
| | | import com.ruoyi.system.domain.vo.MgtDeptStaffListVo; |
| | | import com.ruoyi.system.domain.vo.MgtStaffPageVo; |
| | |
| | | * @param |
| | | * @return List<MgtDeptStaffListVo> |
| | | */ |
| | | List<MgtDeptStaffListVo> listMgtDeptStaff(); |
| | | List<MgtDeptStaffListVo> listMgtDeptStaff(@Param("deptId") Long deptId,@Param("userId")Long userId, @Param("name")String name); |
| | | |
| | | /** |
| | | * @description 获取部门员工列表 |
| | |
| | | * @return List<DeptSimpleVo> |
| | | */ |
| | | List<DeptSimpleVo> listSimpleDept(); |
| | | |
| | | |
| | | /** |
| | | * @description 通过id获取员工列表 |
| | | * @author jqs |
| | | * @date 2023/9/5 10:02 |
| | | * @param userIdList |
| | | * @return List<SysStaff> |
| | | */ |
| | | List<SysStaff> listSysStaffByIds(@Param("userIdList")List<Long> userIdList); |
| | | } |