中扬CRM客户关系管理系统
#
luxiaotao1123
2022-11-24 fb28685a5209be09c042f1a65650cb2fecefbc90
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);
 
}