Commit b886ee19 by zhangkb

添加根据标签id获取标签信息接口

parent 51c56113
......@@ -84,6 +84,12 @@ public class TagCtrl {
return tagService.hasChild(tagId, userName);
}
@ApiOperation(value = "根据标签id获取标签信息", notes = "根据标签id获取标签信息")
@PostMapping(value = "/getTagById")
public Tag getTagById(@RequestParam(value = "tagId") String tagId) throws Exception{
return tagService.getTagById(tagId);
}
@ApiOperation(value = "获取维度标签树", notes = "获取维度标签树")
@GetMapping(value = "/queryDimensionTagAsTree")
public JsonNode[] queryDimensionTagAsTree(
......
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