Commit a0f473c0 by 阮思源

关键词先注掉

parent f93c12d5
......@@ -652,17 +652,17 @@ public class BookKeywordBizImpl implements BookKeywordBiz {
text = text + "《" + bookName + "》" + "还没有配置资源服务,敬请期待。\n";
}
//获取配套关键词
List<KeywordDTO> keywordDTOS = getListByBookGroupId(bookGroupId);
if (!ListUtils.isEmpty(keywordDTOS)) {
text = text + "回复括号内关键词领取本书配套资源学习资料:\n";
for (KeywordDTO keywordDTO : keywordDTOS) {
if (!StringUtil.isEmpty(keywordDTO.getKeywords())) {
text = text + "【" + keywordDTO.getKeywords() + "】";
}
}
text = text + "\n";
}
//获取配套关键词。先去掉,后面可能需要再加上
// List<KeywordDTO> keywordDTOS = getListByBookGroupId(bookGroupId);
// if (!ListUtils.isEmpty(keywordDTOS)) {
// text = text + "回复括号内关键词领取本书配套资源学习资料:\n";
// for (KeywordDTO keywordDTO : keywordDTOS) {
// if (!StringUtil.isEmpty(keywordDTO.getKeywords())) {
// text = text + "【" + keywordDTO.getKeywords() + "】";
// }
// }
// text = text + "\n";
// }
//邀请进群
if (isInviteGroup != null && isInviteGroup) {
//获取社群码下的分类
......
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