| | |
| | | import com.ruoyi.system.domain.pojo.staff.SysStaff; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.system.domain.vo.MgtDeptStaffListVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @return List<MgtDeptStaffListVo> |
| | | */ |
| | | List<MgtDeptStaffListVo> listMgtDeptStaff(); |
| | | |
| | | /** |
| | | * @description 获取部门员工列表 |
| | | * @author jqs |
| | | * @date 2023/6/13 10:14 |
| | | * @param |
| | | * @return List<MgtDeptStaffListVo> |
| | | */ |
| | | List<MgtDeptStaffListVo> listMgtDeptStaffByDept(@Param("deptId") Long deptId,@Param("userId") Long userId); |
| | | |
| | | } |