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 findList(Depart depart); List findListForExport(Depart depart,String token); List pulldownList(); void addDepart(Depart depart); void update(Depart depart); void delete(Serializable id); List departUserList(DepartUserDto departUserDto); }