zhanghua
2023-11-21 bbe76086f95dfb34e942d9f2801e17db38391c68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ycl.service.depart;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.depart.DepartManager;
import org.apache.ibatis.annotations.Param;
 
import java.util.Collection;
import java.util.List;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author zhanghua
 * @since 2022-10-09
 */
public interface IDepartManagerService extends IService<DepartManager> {
 
    void deleteByDepartId(Long departId);
 
    /**
     * 查询部门的员工id
     * @param deptId
     * @return
     */
    Collection<Long> getByDeptId(Long deptId);
}