This commit is contained in:
Gordon 2021-12-17 12:15:33 +08:00
parent 7403619cbc
commit c8b1e5bafc

View File

@ -24,6 +24,21 @@ message GetAllUsersUidResp{
CommonResp commonResp = 1;
repeated string uidList = 2;
}
message AccountCheckReq{
repeated string uidList = 1;
string token = 2;
string operationID = 3;
}
message AccountCheckResp{
CommonResp commonResp = 1;
message SingleUserStatus {
string userID = 1;
string accountStatus = 2;
}
repeated SingleUserStatus result = 2;
}
message GetUserInfoReq{
repeated string userIDList = 1;