WWxFriendPushNotice.proto 569 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. package Im.Scrm.Ww.Proto; //命名空间约定
  3. import "WTransport.proto";
  4. message WxFriendPushNoticeMessage {
  5. int64 WxId = 1; // 设备企业WX号
  6. repeated WxFriendMessage Friends = 2; // 好友信息模型 多个
  7. int32 Size = 3;
  8. int32 Count = 4;
  9. int32 Page = 5;
  10. int64 TaskId = 6;
  11. }
  12. message WxFriendMessage {
  13. string Name = 1; // 昵称
  14. string Avatar = 2; // 头像
  15. string OpenId = 3; // openId
  16. string UnionId = 4; // unionId contactKey
  17. bool HasSent = 5; // 是否已发送过邀请
  18. }