张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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
29
30
31
32
33
34
package com.thhy.staff.modules.biz.depart.service;
 
import com.thhy.staff.modules.biz.depart.entity.Depart;
import com.thhy.staff.modules.biz.depart.entity.DepartGroupPullVo;
import com.thhy.staff.modules.biz.depart.entity.DepartListVo;
import com.thhy.staff.modules.biz.depart.entity.DepartUserDto;
import com.thhy.staff.modules.biz.platuser.entity.PlatUser;
 
import java.io.Serializable;
import java.util.List;
 
/**
 *  服务类
 * @author zhang_xiao_bo
 * @since 2023-03-31 13:07:46
 */
public interface DepartService {
 
    Depart get(Serializable id);
 
    List<DepartListVo> findList(Depart depart);
 
    List<DepartListVo> findListForExport(Depart depart,String token);
 
    List<DepartGroupPullVo> pulldownList();
 
    void addDepart(Depart depart);
 
    void update(Depart depart);
 
    void delete(Serializable id);
 
    List<PlatUser> departUserList(DepartUserDto departUserDto);
}