jiangqs
2023-06-13 d6e5d5a71112fb1f0a7361485e80692cc03bc4c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.system.mapper.staff;
 
import com.ruoyi.system.domain.pojo.staff.SysStaff;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.vo.MgtDeptStaffListVo;
 
import java.util.List;
 
/**
 * <p>
 * 平台员工 Mapper 接口
 * </p>
 *
 * @author jqs
 * @since 2023-06-13
 */
public interface SysStaffMapper extends BaseMapper<SysStaff> {
 
    /**
     * @description  获取部门员工列表
     * @author  jqs
     * @date    2023/6/13 10:14
     * @param
     * @return  List<MgtDeptStaffListVo>
     */
    List<MgtDeptStaffListVo> listMgtDeptStaff();
}