zss
2024-12-27 ebede85283906f52dd45d0755d22140538038ac3
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
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.dto.DepartmentDto;
import com.yuanchu.mom.pojo.DepartmentLims;
 
import java.util.List;
 
/**
* @author z1292
* @description 针对表【department_lims(部门明细)】的数据库操作Service
* @createDate 2024-05-22 14:08:17
*/
public interface DepartmentLimsService extends IService<DepartmentLims> {
 
    //添加部门
    int addDepartment(DepartmentLims departmentLims);
 
    //获取部门树
    List<DepartmentDto> selectDepartment();
 
    //删除部门
    boolean delDepartment(Integer id);
 
    List<DepartmentLims> selectDepartmentLimsEnum();
}