Commit fc0b5e5f by zhiwj

指标说明

parent bc17b3be
......@@ -108,6 +108,12 @@ public class IndexServiceImpl implements IndexService {
return null;
}
indexQO.setIndexIdList(indexIdList);
return tabIndexMapper.listIndex(indexQO).get(0);
indexQO.setCode(indexCode);
Page<TabIndex> page = tabIndexMapper.listIndex(indexQO);
if (CollectionUtils.isEmpty(page)) {
return null;
} else {
return page.get(0);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment