| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | syntax = "proto3";package api.common;//import "google/api/annotations.proto";//import "google/protobuf/struct.proto";//import "google/protobuf/empty.proto";option go_package = "git.ikuban.com/server/pw-protobuf/api/common;common";option java_multiple_files = true;option java_package = "api.common";message UserAndPartnerIdParam {  string partnerId = 1;  string userId = 2;}message User1AndUser2IdParam {  string user1 = 1;  string user2 = 2;}message PartnerIDParam {  string partnerID = 1;}message UserIDParam {  string userId = 1;}// 主页信息message HomeInfo{  string id = 1; // id  string nickname = 2;// 昵称  string avatarUrl =3;// 头像链接  int64 sex = 4;// 性别  repeated string pictures = 5; // 图片  int64 age = 6; // 年龄  string constellation = 7; // 星座  string area = 8; // 地区  repeated string tag = 9; // 标签  string signature = 10; // 签名  string introduceVoice = 11; // 介绍语音  int64 likedNum = 12;// 喜欢我  int64 lookNum = 13;// 看过我}// 添加好友页面信息message AddFriendMessageInfo{  string id = 1; // id  string nickname = 2;// 昵称  string avatarUrl =3;// 头像链接  int64 sex = 4;// 性别  repeated string pictures = 5; // 图片}
 |