| | |
| | | package com.ruoyi.system.service.staff; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.system.api.domain.dto.MerEditUserDto; |
| | | import com.ruoyi.system.api.domain.dto.MgtBaseGetDto; |
| | | import com.ruoyi.system.domain.dto.MgtStaffEditDto; |
| | | import com.ruoyi.system.domain.dto.MgtStaffPageDto; |
| | | import com.ruoyi.system.domain.pojo.staff.SysStaff; |
| | | import com.ruoyi.system.domain.dto.MgtSysStaffImportDto; |
| | | import com.ruoyi.system.api.domain.poji.sys.SysStaff; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.domain.vo.MgtDeptStaffListVo; |
| | | import com.ruoyi.system.domain.vo.MgtStaffPageVo; |
| | |
| | | * @param |
| | | * @return List<MgtDeptStaffListVo> |
| | | */ |
| | | List<MgtDeptStaffListVo> listMgtDeptStaff(); |
| | | List<MgtDeptStaffListVo> listMgtDeptStaff(Long deptId,Long userId, String name); |
| | | |
| | | /** |
| | | * @description 通过权限获取部门员工列表 |
| | |
| | | * @return List<MgtStaffPageVo> |
| | | */ |
| | | List<MgtStaffPageVo> pageMgtStaff(Page page, MgtStaffPageDto mgtStaffPageDto); |
| | | |
| | | /** |
| | | * @description |
| | | * @author jqs |
| | | * @date 2023/7/14 9:53 |
| | | * @param mobile |
| | | * @return SysStaff |
| | | */ |
| | | SysStaff getByMobile(String mobile); |
| | | |
| | | |
| | | |
| | | /** |
| | | * @description 编辑商户员工 |
| | | * @author jqs |
| | | * @date 2023/7/19 19:42 |
| | | * @param merEditUserDto |
| | | * @return void |
| | | */ |
| | | void editSysStaffInfo(MerEditUserDto merEditUserDto); |
| | | |
| | | /** |
| | | * @description 导入员工 |
| | | * @author jqs |
| | | * @date 2023/8/18 16:04 |
| | | * @param |
| | | * @return void |
| | | */ |
| | | String importSysStaff(List<MgtSysStaffImportDto> staffImportDtoList); |
| | | |
| | | /** |
| | | * @description 通过id获取员工列表 |
| | | * @author jqs |
| | | * @date 2023/9/5 10:02 |
| | | * @param userIdList |
| | | * @return List<SysStaff> |
| | | */ |
| | | List<SysStaff> listSysStaffByIds(List<Long> userIdList); |
| | | |
| | | |
| | | |
| | | /** |
| | | * @description 企业微信消息推送 |
| | | * @author jqs |
| | | * @date 2023/8/29 11:05 |
| | | * @return void |
| | | */ |
| | | void sendTaskMessage(); |
| | | } |