Commit 3f752ab1 by 徐高华

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

群聊查询加条件

See merge request !2286
parents 7ab25f09 6d63bf9c
......@@ -72,6 +72,19 @@ public class GroupChatChatDetailReq implements Serializable {
*/
private String requestProject;
/**
* 群名称、id
*/
private String groupSearchParams ;
public String getGroupSearchParams() {
return groupSearchParams;
}
public void setGroupSearchParams(String groupSearchParams) {
this.groupSearchParams = groupSearchParams;
}
public Integer getDataApiOrderField() {
Map<String, Integer> map = new HashMap<>(4);
map.put("joinTime", 1);
......@@ -109,6 +122,9 @@ public class GroupChatChatDetailReq implements Serializable {
if (StringUtils.isNotBlank(userType)) {
jsonObject.put("userType", userType);
}
if(StringUtils.isNotBlank(groupSearchParams)) {
jsonObject.put("groupSearchParams",groupSearchParams) ;
}
}
......
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