Commit 2370a168 by qiuchaofei

1.修改表大小表规模的类型

parent 36fb756d
...@@ -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);
......
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