|
|
|
@ -17,10 +17,6 @@ public class FindItemDetailHandler {
|
|
|
|
|
private CommonQueryDao commonQueryDao;
|
|
|
|
|
|
|
|
|
|
public List<String> findItemDetail(String itemVid, String itemType, String edgeType) {
|
|
|
|
|
List<String> itemDetail = commonQueryDao.findItemDetail(itemVid, edgeType, itemType);
|
|
|
|
|
if (CollUtil.isEmpty(itemDetail)){
|
|
|
|
|
throw new BusinessException("未找到事项信息");
|
|
|
|
|
}
|
|
|
|
|
return itemDetail;
|
|
|
|
|
return commonQueryDao.findItemDetail(itemVid, edgeType, itemType);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|