1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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<Long,String> getDepName(Set<Long> collectDepIdSet);
| }
|
|