群聊成员获取

This commit is contained in:
super_wang
2024-04-24 23:36:55 +08:00
parent 6bf4a79e60
commit 0090309f27
5 changed files with 479 additions and 4 deletions
+21
View File
@@ -0,0 +1,21 @@
syntax = "proto3";
package roomdata;
message RoomData {
message RoomMember {
string wxid = 1;
string name = 2;
int32 state = 3;
}
repeated RoomMember members = 1;
int32 field_2 = 2;
int32 field_3 = 3;
int32 field_4 = 4;
int32 room_capacity = 5;
int32 field_6 = 6;
int64 field_7 = 7 [jstype = JS_STRING];
int64 field_8 = 8 [jstype = JS_STRING];
}