add group fuc

This commit is contained in:
hrxiang
2021-07-08 18:41:00 +08:00
parent 073b91ba99
commit 3acbacda6d
26 changed files with 536 additions and 141 deletions

View File

@@ -0,0 +1,4 @@
class ConversationType{
static const int single_chat = 1;
static const int group_chat = 2;
}

View File

@@ -0,0 +1,5 @@
class GroupRole {
static const member = 0;
static const owner = 1;
static const admin = 2;
}

View File

@@ -15,4 +15,6 @@ class MessageType {
static const file = 105;
static const accept_friend = 201;
static const create_group = 502;
}