add group proto

This commit is contained in:
wangchuxiao
2023-01-03 18:08:59 +08:00
parent 0554778c83
commit 4400423fca
5 changed files with 2732 additions and 4374 deletions
+2668 -4372
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -388,7 +388,7 @@ message GroupIsExistResp {
message UserIsInGroupReq {
string groupID = 1;
string userIDList = 2;
repeated string userIDList = 2;
string operationID = 3;
}
@@ -430,7 +430,7 @@ service group{
rpc SetGroupMemberInfo(SetGroupMemberInfoReq) returns (SetGroupMemberInfoResp);
rpc GetGroupAbstractInfo(GetGroupAbstractInfoReq) returns (GetGroupAbstractInfoResp);
rpc GroupIsExist(GroupIsExistReq) returns(GroupIsExistResp);
rpc UserIsInGroup(UserIsInGroupReq) returns();
rpc UserIsInGroup(UserIsInGroupReq) returns(UserIsInGroupResp);
}