value
2024-05-23 05c569f74a1c94b84145abe34f2b2385d68fdec6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.dto.DepartmentDto;
import com.yuanchu.mom.pojo.DepartmentLims;
 
import java.util.List;
 
/**
* @author z1292
* @description 针对表【department_lims(部门明细)】的数据库操作Mapper
* @createDate 2024-05-22 14:08:17
* @Entity com.yuanchu.mom.pojo.DepartmentLims
*/
public interface DepartmentLimsMapper extends BaseMapper<DepartmentLims> {
 
    //获取部门树
    List<DepartmentDto> selectDepartment();
 
    //根据部门id,查询他的所有子类id
    List<Integer> selectSonById(Integer id);
 
}