Commit 7e3c99f0 by zhangkb

标签添加业务节点查询和分析

parent cfb53770
......@@ -265,13 +265,13 @@ public class TagCtrl {
}
//author:zhangkb time:2020-1-16 desc:标签分析接口
@ApiOperation(value = "标签分析(dataType:0,1,2 依次代表:元数据,模型,标准)", notes = "标签分析(dataType:0,1,2 依次代表:元数据,模型,标准)")
@ApiOperation(value = "标签分析(dataType:0,1,2,3 依次代表:元数据,模型,标准,业务节点)", notes = "标签分析(dataType:0,1,2,3 依次代表:元数据,模型,标准,业务节点)")
@PostMapping(value = "/tagAnalysis")
public Map<String,Object> tagAnalysis(@RequestParam String dataType) throws Exception{
return tagService.tagAnalysis(dataType);
}
@ApiOperation(value = "导出标签分析excel文件(dataType:0,1,2 依次代表:元数据,模型,标准; type:0,1,2 代表:导出系统分析,导出维度分析,导出自定义分析)", notes = "导出标签分析excel文件(dataType:0,1,2 依次代表:元数据,模型,标准; type:0,1,2 代表:导出系统分析,导出维度分析,导出自定义分析)")
@ApiOperation(value = "导出标签分析excel文件(dataType:0,1,2,3 依次代表:元数据,模型,标准,业务节点; type:0,1,2 代表:导出系统分析,导出维度分析,导出自定义分析)", notes = "导出标签分析excel文件(dataType:0,1,2,3 依次代表:元数据,模型,标准,业务节点; type:0,1,2 代表:导出系统分析,导出维度分析,导出自定义分析)")
@GetMapping("/exportTagAnalysis")
public int exportTagAnalysis(@RequestParam String dataType,@RequestParam String type,
HttpServletResponse response)throws Exception{
......
......@@ -377,6 +377,9 @@ public class TagService {
case "2":
modelPath = "Catalog,StandardCatalog,DataStandard";
break;
case "3":
modelPath = "Catalog,DataModelCatalog";
break;
default:
break;
}
......
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