中扬CRM客户关系管理系统
LSH
2023-07-24 a7fea1c069cd55537ab8a6743758f12c8265f159
src/main/java/com/zy/crm/system/service/UserService.java
@@ -1,5 +1,6 @@
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;
@@ -7,6 +8,10 @@
public interface UserService extends IService<User> {
    List<User> getUserByDept(Long deptParentId);
    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);
}