Commit 5a4a632d by zhangkb

新增获取标签子节点数量

parent e444ff4a
...@@ -273,6 +273,12 @@ public class TagCtrl { ...@@ -273,6 +273,12 @@ public class TagCtrl {
pageNum, pageSize, tagType); pageNum, pageSize, tagType);
} }
@ApiOperation(value = "根据标签id获取标签下的子节点总数", notes = "根据标签id获取标签下的子节点总数")
@PostMapping(value = "/getChildTagCount")
public int getChildTagCount(@RequestParam String tagId) {
return tagService.getChildCountByTagId(tagId);
}
//---------------以下为导入系统的时候用到------------------ //---------------以下为导入系统的时候用到------------------
@ApiOperation(value = "查询系统标签", notes = "查询系统标签") @ApiOperation(value = "查询系统标签", notes = "查询系统标签")
......
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