diff --git a/pkg/proto/user/user.proto b/pkg/proto/user/user.proto index 2e9c98e39..7d32b0ed3 100644 --- a/pkg/proto/user/user.proto +++ b/pkg/proto/user/user.proto @@ -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;