1234567891011121314151617181920212223242526 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- import "TransportMessage.proto";
- message FriendReqMessage {
- string FriendId = 1;
- string FriendNo = 2;
- string FriendNick = 3;
- string Avatar = 4;
- string Reason = 5;
- EnumGender Gender = 6;
- string Province = 7;
- string City = 8;
- int32 Source = 9;
- string SourceUser = 10;
- int64 ReqTime = 11;
- int32 State = 12;
- int64 FirstReq = 13;
-
- }
- message FriendAddReqListNoticeMessage {
- string WeChatId = 1;
- repeated FriendReqMessage Requests = 2;
- }
|