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);
|
}
|