dengbiao 6 days ago
parent
commit
226f645469
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      egg_im/business.ext.proto

+ 8
- 0
egg_im/business.ext.proto View File

@@ -145,12 +145,20 @@ message User {
string phone_number = 9; // 手机号
}

message BusinessInfo {
int64 Uid = 1; // 用户id
string LevelName = 2; // 会员等级名称
int32 LevelId = 3; // 会员等级
bool IsRealName = 4; // 是否实名
}

message GetUserReq {
int64 user_id = 1; // 用户id
string phone = 2; // 用户手机号
}
message GetUserResp {
User user = 1; // 用户信息
BusinessInfo businessInfo = 2; // 用户业务信息
}

message UpdateUserReq {


Loading…
Cancel
Save