Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tagManager
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanmw
tagManager
Commits
7e3c99f0
Commit
7e3c99f0
authored
May 25, 2020
by
zhangkb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
标签添加业务节点查询和分析
parent
cfb53770
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
TagCtrl.java
src/main/java/com/keymobile/tagmanager/api/TagCtrl.java
+2
-2
TagService.java
...ain/java/com/keymobile/tagmanager/service/TagService.java
+3
-0
No files found.
src/main/java/com/keymobile/tagmanager/api/TagCtrl.java
View file @
7e3c99f0
...
@@ -265,13 +265,13 @@ public class TagCtrl {
...
@@ -265,13 +265,13 @@ public class TagCtrl {
}
}
//author:zhangkb time:2020-1-16 desc:标签分析接口
//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"
)
@PostMapping
(
value
=
"/tagAnalysis"
)
public
Map
<
String
,
Object
>
tagAnalysis
(
@RequestParam
String
dataType
)
throws
Exception
{
public
Map
<
String
,
Object
>
tagAnalysis
(
@RequestParam
String
dataType
)
throws
Exception
{
return
tagService
.
tagAnalysis
(
dataType
);
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"
)
@GetMapping
(
"/exportTagAnalysis"
)
public
int
exportTagAnalysis
(
@RequestParam
String
dataType
,
@RequestParam
String
type
,
public
int
exportTagAnalysis
(
@RequestParam
String
dataType
,
@RequestParam
String
type
,
HttpServletResponse
response
)
throws
Exception
{
HttpServletResponse
response
)
throws
Exception
{
...
...
src/main/java/com/keymobile/tagmanager/service/TagService.java
View file @
7e3c99f0
...
@@ -377,6 +377,9 @@ public class TagService {
...
@@ -377,6 +377,9 @@ public class TagService {
case
"2"
:
case
"2"
:
modelPath
=
"Catalog,StandardCatalog,DataStandard"
;
modelPath
=
"Catalog,StandardCatalog,DataStandard"
;
break
;
break
;
case
"3"
:
modelPath
=
"Catalog,DataModelCatalog"
;
break
;
default
:
default
:
break
;
break
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment