feat: AppKey 切换重新配置上线

This commit is contained in:
zuoqinbo 2023-11-03 10:51:02 +08:00
parent 28a712d74d
commit 453fb52bf5

View File

@ -2,6 +2,8 @@ package cn.axzo.im.center.api.vo.resp;
import lombok.Builder;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
/**
* im-center
*
@ -53,4 +55,14 @@ public class MessageDispatchResp {
*/
private String personId;
/**
* 判断消息是否发送成功
* 同一个用户目前根据appType端有两条消息
*/
public boolean sendSuccess() {
if (StringUtils.isNotEmpty(msgid)) {
return true;
}
return false;
}
}