Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
neo4jRelation
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
qiuchaofei
neo4jRelation
Commits
2370a168
Commit
2370a168
authored
Dec 24, 2021
by
qiuchaofei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.修改表大小表规模的类型
parent
36fb756d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
TableServiceImpl.java
...adata/metadataRelation/service/impl/TableServiceImpl.java
+2
-4
No files found.
src/main/java/com/keymobile/metadata/metadataRelation/service/impl/TableServiceImpl.java
View file @
2370a168
...
@@ -255,11 +255,9 @@ public class TableServiceImpl implements ITableService {
...
@@ -255,11 +255,9 @@ public class TableServiceImpl implements ITableService {
String
comment
=
(
String
)
attriuteMap
.
get
(
"comment"
);
String
comment
=
(
String
)
attriuteMap
.
get
(
"comment"
);
returnMap
.
put
(
"说明"
,
comment
);
returnMap
.
put
(
"说明"
,
comment
);
int
tableRowsCount
=
(
Integer
)
attriuteMap
.
get
(
"tableRowsCount"
);
returnMap
.
put
(
"表规模(行)"
,
attriuteMap
.
get
(
"tableRowsCount"
)+
""
);
returnMap
.
put
(
"表规模(行)"
,
tableRowsCount
+
""
);
int
tableSize
=
(
Integer
)
attriuteMap
.
get
(
"tableSize"
);
returnMap
.
put
(
"表大小(字节)"
,
attriuteMap
.
get
(
"tableSize"
)+
""
);
returnMap
.
put
(
"表大小(字节)"
,
tableSize
+
""
);
String
lastUpdateTime
=
(
String
)
attriuteMap
.
get
(
"lastUpdateTime"
);
String
lastUpdateTime
=
(
String
)
attriuteMap
.
get
(
"lastUpdateTime"
);
returnMap
.
put
(
"最后更新时间"
,
lastUpdateTime
);
returnMap
.
put
(
"最后更新时间"
,
lastUpdateTime
);
...
...
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