package com.gkhy.safePlatform.targetDuty.service; import com.gkhy.safePlatform.account.rpc.apimodel.model.resp.DepInfoRPCRespDTO; import java.util.Map; import java.util.Set; /** * 公共服务接口 * * @author xurui * @since 2022-07-20 11:49:22 */ public interface CommonService { String getDepName(Long depId); DepInfoRPCRespDTO getDepInfo(Long depId); Map getDepName(Set collectDepIdSet); }