中扬CRM客户关系管理系统
#
LSH
2023-11-10 e0c38ac9498d3a55b1b0955bf7dcc48965b605a6
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);
 
}