Commit 78da7b97 by 魏文甫

update

1 parent 53af97bf
......@@ -83,19 +83,19 @@ public class InformationServiceImpl implements InformationService {
if (tKzyInformation == null) {
return returnMap("0", "未查到该数据信息!", null);
}
tKzyInformation.getContent();
Map<String, Object> dataMap = new HashMap<String, Object>();
dataMap.put("id", tKzyInformation.getId());
dataMap.put("title", tKzyInformation.getTitle());
dataMap.put("author", tKzyInformation.getAuthor());
dataMap.put("picUrl", tKzyInformation.getPicUrl());
dataMap.put("iconUrl", tKzyInformation.getIconUrl());
dataMap.put("isDelete", tKzyInformation.getIsDelete());
dataMap.put("createDt", tKzyInformation.getCreateDt());
dataMap.put("updateDt", tKzyInformation.getUpdateDt());
dataMap.put("content", new String(tKzyInformation.getContent()));
dataMap.put("isFile", tKzyInformation.getIsFile());
return returnMap("1", "", dataMap);
// tKzyInformation.getContent();
// Map<String, Object> dataMap = new HashMap<String, Object>();
// dataMap.put("id", tKzyInformation.getId());
// dataMap.put("title", tKzyInformation.getTitle());
// dataMap.put("author", tKzyInformation.getAuthor());
// dataMap.put("picUrl", tKzyInformation.getPicUrl());
// dataMap.put("iconUrl", tKzyInformation.getIconUrl());
// dataMap.put("isDelete", tKzyInformation.getIsDelete());
// dataMap.put("createDt", tKzyInformation.getCreateDt());
// dataMap.put("updateDt", tKzyInformation.getUpdateDt());
// dataMap.put("content", new String(tKzyInformation.getContent()));
// dataMap.put("isFile", tKzyInformation.getIsFile());
return returnMap("1", "", tKzyInformation);
}
@Override
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!