Commit c6886f60 by zhiwj

查询添加参数

parent e4665d5e
......@@ -97,6 +97,12 @@ public class IndexApiServiceImpl implements IndexApiService {
IndexDTO indexDTO = EntityUtil.changeEntityByJSON(IndexDTO.class, index);
List<String> moduleIdList = this.indexModuleRelService.listModuleIdByBusinessId(indexDTO.getIndexId(), LogAndUpdateTipsTypeEnum.INDEX.getCode());
indexDTO.setRelModuleIdList(moduleIdList);
if (indexDTO.getIndexGroupId() != null) {
TabIndexGroup indexGroup = this.indexGroupService.getById(indexDTO.getIndexGroupId());
if (indexGroup != null) {
indexDTO.setIndexGroupName(indexGroup.getIndexGroupName());
}
}
return EnterpriseServiceResponse.success(indexDTO);
}
......
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