Commit 46b91af4 by 魏文甫

Merge branch 'wei_master' into '105'

update

See merge request !33
2 parents 1eb85bb2 0d5d4ce9
...@@ -80,6 +80,9 @@ public class InformationServiceImpl implements InformationService { ...@@ -80,6 +80,9 @@ public class InformationServiceImpl implements InformationService {
@Override @Override
public Map<String, Object> informationDetail(Long informationId) { public Map<String, Object> informationDetail(Long informationId) {
TKzyInformation tKzyInformation = tKzyInformationMapper.selectByPrimaryKey(informationId); TKzyInformation tKzyInformation = tKzyInformationMapper.selectByPrimaryKey(informationId);
if (tKzyInformation == 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());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!