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();
|
}
|