中扬CRM客户关系管理系统
#
luxiaotao1123
2022-09-16 e1583e24d38b49d8e668e7756c5fca772fd6cbc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 page, Long hostId, String deptId, Object username, Object mobile);
 
    List<User> getUserByDept(Long deptParentId);
 
}