Refactor code

This commit is contained in:
wenxu12345 2022-01-14 18:16:50 +08:00
parent 2a3cf5f002
commit 839123408b
2 changed files with 17 additions and 11 deletions

View File

@ -58,7 +58,7 @@ message GetFriendApplyListReq{
message GetFriendApplyListResp{
int32 ErrCode = 1;
string ErrMsg = 2;
repeated open_im_sdk.FriendRequest FriendRequestList = 3;
repeated server_api_params.FriendRequest FriendRequestList = 3;
}

View File

@ -1,5 +1,5 @@
syntax = "proto3";
package open_im_sdk;//The package name to which the proto file belongs
package server_api_params;//The package name to which the proto file belongs
//option go_package = "./sdk_ws;open_im_sdk";//The generated go pb file is in the current directory, and the package name is open_im_sdk
////////////////////////////////base///////////////////////////////
@ -87,15 +87,21 @@ message GroupRequest{
}
message FriendRequest{
string fromUserID = 1;
string toUserID = 2;
int32 handleResult = 3;
string reqMsg = 4;
uint32 createTime = 5;
string handlerUserID = 6;
string handleMsg = 7;
uint32 handleTime = 8;
string ex = 9;
string fromUserID = 1;
string fromNickname = 2;
string fromFaceURL = 3;
string fromGender = 4;
string toUserID = 5;
string toNickname = 6;
string toFaceURL = 7;
string toGender = 8;
int32 handleResult = 9;
string reqMsg = 10;
uint32 createTime = 11;
string handlerUserID = 12;
string handleMsg = 13;
uint32 handleTime = 14;
string ex = 15;
}
///////////////////////////////////base end/////////////////////////////////////