Commit 7487c419 by 徐高华

Merge branch 'feature/社群' into 'developer'

日志

See merge request !780
parents bca6de79 7ebb3795
......@@ -95,9 +95,9 @@ public class GroupChatController {
List<GroupChatDTO> chatList = chatResp.getResult();
StringBuilder content = new StringBuilder();
for (GroupChatDTO item : chatList) {
content.append(item.getGroupChatId()).append("-").append(item.getName()).append(",");
content.append(item.getWxChatId()).append("-").append(item.getName()).append(",");
}
return content.toString();
return content.toString().substring(0,content.length()-1);
}
@RequestMapping("page")
......
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