Commit 6d63bf9c by 徐高华

群聊查询加条件

parent 8b57b510
......@@ -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