1234567891011121314151617181920212223242526272829 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- import "TransportMessage.proto";
- message FriendMessage {
- string FriendId = 1;
- string FriendNo = 2;
- string FriendNick = 3;
- string Memo = 4;
- EnumGender Gender = 5;
- string Country = 6;
- string Province = 7;
- string City = 8;
- string Avatar = 9;
- string Remark=10;
- int32 Type = 11;
- string LabelIds = 12;
- string Phone=13;
- string Desc=14;
- int32 Source=15;
- string SourceExt=16;
- }
- message FriendAddNoticeMessage {
- string WeChatId = 1;
- FriendMessage Friend = 3;
- }
|