Commit 288a1ee4 by 杨涛

fix 空指针

parent bd496962
......@@ -365,12 +365,12 @@ public class WeixinClockBizImpl implements WeixinClockBiz {
LOGGER.info("content----->"+content+"weixinGroupId----->"+weixinGroupId);
//简单过滤非关键词的词
if (StringUtil.isEmpty(content) || content.length() > 10) {
return null;
return false;
}
//通过群id获取对应基本信息
GroupClassifyQrcodeDTO classifyQrcodeInfo = bookGroupClassifyBiz.getClassifyQrcodeInfo(weixinGroupId);
if(null == classifyQrcodeInfo){
return null;
return false;
}
Map<String,Object> paramMap = new HashMap<>();
paramMap.put("bookGroupClassifyId",classifyQrcodeInfo.getClassifyId());
......
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