diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index f2f6672b..1179f189 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -142,6 +142,7 @@ enum LOGIN_TYPE { ACCOUNT_LOGIN = 0; // 账号密码登录 CODE_LOGIN = 1; // 验证码登录 DEVICE_LOGIN = 2; // 设备号登录 + SDK_LOGIN = 3; // 第三方SDK登录 } // 时间线类型 @@ -255,7 +256,8 @@ message ClientRes{ //客户都请求数据返回 和主动推送 message ReqRegisterAccount{ string UserName = 1; string UserPwd = 2; - int32 dwUin = 3; + int32 dwUin = 3; + string Device = 4; // 设备标识 } ////响应注册账号 @@ -269,7 +271,6 @@ message ReqLogin{ string Code = 3; // 验证码 string Device = 4; // 设备标识 LOGIN_TYPE type = 5; // 登录方式 - } message ReqLoginCode{ @@ -1647,6 +1648,7 @@ message ResFriendReply{ message ReqFriendReplyHandle{ int32 LogId = 1; // 时间线id string Param = 2; // 回复内容 + int32 Type = 3; // 回复类型 1:打招呼 2:删除 3:查看 } message ResFriendReplyHandle{