Commit d5293e51 by 徐高华

Merge branch 'feature/xgh/加好友申请标签' into 'master'

群聊

See merge request !2296
parents f09fe87d 9c550ff7
......@@ -77,6 +77,17 @@ public class GroupChatChatDetailReq implements Serializable {
*/
private String groupSearchParams ;
private String content ;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getGroupSearchParams() {
return groupSearchParams;
}
......@@ -125,6 +136,9 @@ public class GroupChatChatDetailReq implements Serializable {
if(StringUtils.isNotBlank(groupSearchParams)) {
jsonObject.put("groupSearchParams",groupSearchParams) ;
}
if(StringUtils.isNotBlank(content)) {
jsonObject.put("content",content) ;
}
}
......
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