Commit c2173006 by 徐高华

群查询

parent 9f143847
......@@ -36,6 +36,15 @@ public class GroupChatSearchQDTO extends PageQo implements Serializable {
// 筛选激活或者开启联系我的群主
private Integer canUseFlag ;
private String wxChatId ;
private String searchPage ;
public String getSearchPage() {
return searchPage;
}
public void setSearchPage(String searchPage) {
this.searchPage = searchPage;
}
public String getWxChatId() {
return wxChatId;
......
......@@ -278,7 +278,12 @@
and a.chat_status in (0,1,2,3,4)
</if>
<if test="null == chatHmId">
and a.chat_status in (0,3) and a.init_flag = 1
and a.chat_status in (0,3)
</if>
</if>
<if test="null != searchPage and '' != searchPage ">
<if test="searchPage == 'chatWidget' ">
and a.init_flag = 1
</if>
</if>
<if test="null != status and 1==status">
......
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