19 lines
587 B
Java
19 lines
587 B
Java
|
|
package com.engine.organization.transmethod;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: TODO
|
||
|
|
* @author:dxfeng
|
||
|
|
* @createTime: 2022/05/25
|
||
|
|
* @version: 1.0
|
||
|
|
*/
|
||
|
|
public class JobTransMethod {
|
||
|
|
|
||
|
|
public static String getSpanById(String planId) {
|
||
|
|
//JobMapper compMapper = MapperProxyFactory.getProxy(CompMapper.class);
|
||
|
|
//List<Map<String, Object>> maps = compMapper.listCompsByIds(QueryParam.builder().ids(planId).build().getIds());
|
||
|
|
//String names = maps.stream().map(item -> (String) item.get("name")).collect(Collectors.joining(","));
|
||
|
|
//return names;
|
||
|
|
return "";
|
||
|
|
}
|
||
|
|
}
|