package com.gk.hotwork.Service.Middle; import com.gk.hotwork.Domain.Vo.ResultVO; import com.gk.hotwork.Domain.dto.DepInfoRPCRespDTO; import com.gk.hotwork.specialWork.model.dto.resp.DepRPCRespDTO; import java.util.List; public interface AccountDepartmentService { ResultVO getDepInfoByDepId(Long uid,Long depId); ResultVO> listDepByDepIds(List depIds); ResultVO> depList(); }