Commit 8f03b53b by zhiwj

模块分组

parent 24095d03
......@@ -35,7 +35,7 @@ public class IndexGroupApiServiceImpl implements IndexGroupApiService {
Integer indexGroupId = indexGroupService.save(indexGroupDTO);
indexGroupDTO.setIndexGroupId(indexGroupId);
TabIndexGroup parentIndexGroup = indexGroupService.getById(indexGroupDTO.getParentId());
indexGroupDTO.setGroupChain(parentIndexGroup.getGroupChain() + "_" + indexGroupId + "_");
indexGroupDTO.setGroupChain(parentIndexGroup.getGroupChain() + indexGroupId + "_");
indexGroupService.update(indexGroupDTO);
return ServiceResponse.success();
......
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