12345678910111213141516171819 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- import "TransportMessage.proto";
- message FriendAddReqeustNoticeMessage {
- string WeChatId = 1;
- string FriendId = 2;
- string FriendNo = 3;
- string FriendNick = 4;
- string Reason = 5;
- string Avatar = 6;
- int32 Source = 7;
- string SourceUser = 8;
- EnumGender Gender = 9;
- string Province = 10;
- string City = 11;
-
- }
|