| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | | package com.zy.crm.system.service; |  |   |  | import com.baomidou.mybatisplus.plugins.Page; |  | import com.baomidou.mybatisplus.service.IService; |  | import com.zy.crm.system.entity.User; |  |   |  | import java.util.List; |  |   |  | public interface UserService extends IService<User> { |  |   |  |     Page<User> getPage(Page<User> page, Long hostId, String deptId, Object username, Object mobile); |  |   |  |     List<User> getUserByDept(Long hostId, Long deptParentId); |  |   |  |     User getDeptManager(Long hostId, Long deptId); |  |   |  | } | 
 |