Commit 7ebb3795 by 徐高华

日志

parent 1587bc76
...@@ -95,9 +95,9 @@ public class GroupChatController { ...@@ -95,9 +95,9 @@ public class GroupChatController {
List<GroupChatDTO> chatList = chatResp.getResult(); List<GroupChatDTO> chatList = chatResp.getResult();
StringBuilder content = new StringBuilder(); StringBuilder content = new StringBuilder();
for (GroupChatDTO item : chatList) { 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") @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