获取部门全称

main
zhangyue 2025-12-15 11:39:55 +08:00
parent b43bbfbd21
commit 875f6d1afa
1 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import org.springframework.beans.BeanUtils;
import javax.annotation.Resource;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* @author lin
@ -80,4 +81,14 @@ public class ZcloudDepartmentFacadeImpl implements ZcloudDepartmentFacade {
List<ZcloudDepartmentInfoCo> zcloudPostCo = departmentCoConvertor.converCOsToDubboCOs(listed);
return MultiResponse.of(zcloudPostCo);
}
@Override
public String getFullName(Long aLong) {
return null;
}
@Override
public Map<Long, String> listFullName(List<Long> list) {
return null;
}
}