Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
wangming
/
kzy-wx
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 78da7b97
authored
Mar 23, 2020
by
魏文甫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
1 parent
53af97bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
src/main/java/com/server/web/common/service/Impl/InformationServiceImpl.java
src/main/java/com/server/web/common/service/Impl/InformationServiceImpl.java
View file @
78da7b9
...
@@ -83,19 +83,19 @@ public class InformationServiceImpl implements InformationService {
...
@@ -83,19 +83,19 @@ public class InformationServiceImpl implements InformationService {
if
(
tKzyInformation
==
null
)
{
if
(
tKzyInformation
==
null
)
{
return
returnMap
(
"0"
,
"未查到该数据信息!"
,
null
);
return
returnMap
(
"0"
,
"未查到该数据信息!"
,
null
);
}
}
tKzyInformation
.
getContent
();
//
tKzyInformation.getContent();
Map
<
String
,
Object
>
dataMap
=
new
HashMap
<
String
,
Object
>();
//
Map<String, Object> dataMap = new HashMap<String, Object>();
dataMap
.
put
(
"id"
,
tKzyInformation
.
getId
());
//
dataMap.put("id", tKzyInformation.getId());
dataMap
.
put
(
"title"
,
tKzyInformation
.
getTitle
());
//
dataMap.put("title", tKzyInformation.getTitle());
dataMap
.
put
(
"author"
,
tKzyInformation
.
getAuthor
());
//
dataMap.put("author", tKzyInformation.getAuthor());
dataMap
.
put
(
"picUrl"
,
tKzyInformation
.
getPicUrl
());
//
dataMap.put("picUrl", tKzyInformation.getPicUrl());
dataMap
.
put
(
"iconUrl"
,
tKzyInformation
.
getIconUrl
());
//
dataMap.put("iconUrl", tKzyInformation.getIconUrl());
dataMap
.
put
(
"isDelete"
,
tKzyInformation
.
getIsDelete
());
//
dataMap.put("isDelete", tKzyInformation.getIsDelete());
dataMap
.
put
(
"createDt"
,
tKzyInformation
.
getCreateDt
());
//
dataMap.put("createDt", tKzyInformation.getCreateDt());
dataMap
.
put
(
"updateDt"
,
tKzyInformation
.
getUpdateDt
());
//
dataMap.put("updateDt", tKzyInformation.getUpdateDt());
dataMap
.
put
(
"content"
,
new
String
(
tKzyInformation
.
getContent
()));
//
dataMap.put("content", new String(tKzyInformation.getContent()));
dataMap
.
put
(
"isFile"
,
tKzyInformation
.
getIsFile
());
//
dataMap.put("isFile", tKzyInformation.getIsFile());
return
returnMap
(
"1"
,
""
,
dataMap
);
return
returnMap
(
"1"
,
""
,
tKzyInformation
);
}
}
@Override
@Override
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment