You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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(DeleteParam.builder().ids(planId).build().getIds());
|
|
|
|
//String names = maps.stream().map(item -> (String) item.get("name")).collect(Collectors.joining(","));
|
|
|
|
//return names;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getIsKeySpan(String isKey) {
|
|
|
|
if ("1".equals(isKey))
|
|
|
|
return "是";
|
|
|
|
else
|
|
|
|
return "否";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|