Commit 33756edc by 徐高华

群说明

parent 4180816e
......@@ -128,7 +128,7 @@ public class GroupChatHmController {
if (CollectionUtils.isNotEmpty(retPage.getResult())) {
retPage.getResult().forEach(vo->{
if(vo.getUsableChatCount()==0) {
vo.setRemark("无可加入的群聊");
vo.setUseRemark("无可加入的群聊");
}
});
}
......
package com.gic.haoban.manage.web.vo.chat;
import java.io.Serializable;
import java.util.List;
/**
*
......@@ -42,7 +41,20 @@ public class GroupChatHmVO implements Serializable {
private Integer statusFlag;
// 可以群数
private Integer usableChatCount;
private String useRemark ;
public String getUseRemark() {
return useRemark;
}
public void setUseRemark(String useRemark) {
this.useRemark = useRemark;
}
public void setName(String name) {
this.name = name;
}
public Integer getStatusFlag() {
return statusFlag;
}
......
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