@RequestMapping("/accompanyInsertKeyNodeInfor")
@ResponseBody
public PageData accompanyInsertKeyNodeInfor(@RequestBody PageData pd) throws Exception{
if(StringUtils.isBlank(pd.getString("O_ID"))||StringUtils.isBlank(pd.getString("NM_ID"))
||StringUtils.isBlank(pd.getString("KN_CONTENT"))){
return WebResult.requestFailed(10001, "参数缺失!", null);
}
//如果没有数据,还有修改此数据的接口
if(pd.getString("KN_LOC") == null) pd.put("KN_LOC", "");
if(pd.getString("KN_PHOTO") == null) pd.put("KN_PHOTO", "");
pd.put("KN_ID", UuidUtil.get32UUID());
JybAPPUserMobilePersonalMyNodeMapper.accompanyInsertKeyNodeInfor(pd);
return WebResult.requestSuccess();
}
JybAPPUserMobilePersonalMyNodeRestful.java 文件源码
java
阅读 72
收藏 0
点赞 0
评论 0
项目:Spring-Boot-Server
作者:
评论列表
文章目录