GetWeChatsRsp.proto 937 B

12345678910111213141516171819202122232425262728293031
  1. syntax = "proto3";
  2. package Jubo.JuLiao.IM.Wx.Proto; //命名空间约定
  3. option go_package = "./workphone";
  4. import "TransportMessage.proto";
  5. message WeChatRspMessage {
  6. string WeChatId = 1;
  7. string WeChatNo = 2;
  8. string WeChatNick = 3;
  9. string Avatar = 4;
  10. string Country = 5;
  11. string Province = 6;
  12. string City = 7;
  13. EnumGender Gender = 8;
  14. bool IsOnline = 9;
  15. bool IsLogined = 10;
  16. bool IsDelete = 11;
  17. int64 LoginTime = 12;
  18. int64 ModifyTime = 13;
  19. string DeviceName = 14; // 设备名称
  20. int64 LoginUnionId = 15; // 登陆的人
  21. EnumAccountType LoginAccountType = 16; // 登陆人的类型 
  22. bool IsUpgrading = 17; // 是否升级中
  23. }
  24. message GetWeChatsRspMessage {
  25. int64 UnionId = 1; // UID / 子账号ID
  26. EnumAccountType AccountType = 2; // 账号类型
  27. int64 SupplierId = 3; // 商家Id
  28. repeated WeChatRspMessage WeChats = 4; // 多个个人微信号信息
  29. }