FindContactTaskResultNotice.proto 690 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. package Jubo.JuLiao.IM.Wx.Proto; //命名空间约定
  3. option go_package = "./workphone";
  4. import "TransportMessage.proto";
  5. message FindContactTaskResultNoticeMessage {
  6. string WeChatId = 1; // 商家所属微信号
  7. string SearchText = 2; // 搜索的内容
  8. bool Success = 3;
  9. bool IsFriend = 4;
  10. string UserName = 5; // 微信id(不一定准确)
  11. string Alias = 6; // 微信号
  12. string NickName = 7; // 微信昵称
  13. EnumGender Gender = 8; //性别
  14. string Country = 9; //国家 (非必传)
  15. string Province = 10; //省份
  16. string City = 11; //城市
  17. string Avatar = 12; //微信头像 
  18. string ErrMsg = 13; //错误信息
  19. }