Commit 9c550ff7 by 徐高华

群聊

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