1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.iocoder.yudao.module.im.enums;
|
| /**
| * IM 通用常量
| *
| * @author 芋道源码
| */
| public interface ImCommonConstants {
|
| /**
| * 群消息 @ 所有人的特殊用户编号
| * <p>
| * 前后端协议契约值;atUserIds 数组里出现该值表示 @ 全体成员
| */
| long AT_USER_ID_ALL = -1L;
|
| }
|
|