This commit is contained in:
wangchuxiao
2022-11-28 19:09:38 +08:00
parent cf8dc4e529
commit 1be16380da
11 changed files with 1168 additions and 1522 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -89,7 +89,6 @@ message MultiTerminalLoginCheckResp{
string errMsg = 2;
}
service relay {
rpc OnlinePushMsg(OnlinePushMsgReq) returns(OnlinePushMsgResp);
rpc GetUsersOnlineStatus(GetUsersOnlineStatusReq) returns(GetUsersOnlineStatusResp);

File diff suppressed because it is too large Load Diff

View File

@@ -696,4 +696,12 @@ message DelMsgListResp{
string errMsg = 2;
}
message SetAppBackgroundStatusReq {
string userID = 1;
bool isBackground = 2;
}
message SetAppBackgroundStatusResp {
int32 errCode = 1;
string errMsg = 2;
}