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