12345678910111213141516171819202122232425 |
- syntax = "proto3";
- package user;
- import "Common.proto";
- //登录请求
- message login_req
- {
- bytes phone = 1;
- uint32 type = 2;//登录类型,1:密码登录,2:验证码登录
- bytes verify_info = 3;//1密码,2验证码
- int64 time = 4;//纳秒,游客登陆用的
- uint32 system_type = 5;//系统类型,0全部,1:ios,2:android
- }
- //登录响应
- message login_rsp {
- ErrorInfo errInfo = 1; // 错误码信息
- uint32 id = 2;
- bytes token = 3; // 访问令牌
- bytes sskey = 4;
- }
|