WCustomerGroupPushNotice.proto 673 B

1234567891011121314151617181920212223
  1. syntax = "proto3";
  2. package Im.Scrm.Ww.Proto; //命名空间约定
  3. import "WTransport.proto";
  4. message CustomerGroupPushNoticeMessage {
  5. int64 WxId = 1; // 设备企业WX号
  6. bool Success = 2; // 是否成功
  7. repeated CustomerGroupMessage Groups = 3; // 客户群列表
  8. int64 TaskId = 4;
  9. }
  10. message CustomerGroupMessage {
  11. int64 Id = 1; // 会话id
  12. int64 RemoteId = 2; // 会话RemoteId
  13. string Name = 3; // 群名
  14. string Avatar = 4;
  15. int64 Owner = 6; //群主Id
  16. int32 CreateTime = 7; //创建时间
  17. int32 UpdateTime = 8; // 最后更新时间
  18. int32 Flag = 10; //
  19. int32 MemberCnt = 11; //群成员数
  20. }