12345678910111213141516171819202122232425262728293031323334353637 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- message ChatRoomMessage {
- string UserName = 1;
- string NickName = 2;
- repeated string MemberList = 3;
- string Owner = 4;
- string Notice = 5;
- repeated DisplayNameMessage ShowNameList = 6;
- string SelfDisplayName = 7;
- string Avatar = 8;
- int32 Verify = 9;
- bool MsgSilent = 10;
- string Remark = 11;
- int32 Type = 12;
- bool IsUnusual = 30;
- message DisplayNameMessage{
- string UserName = 1;
- string ShowName = 2;
- string Inviter = 3;
- int32 Flag = 4;
- }
- }
- message ChatRoomPushNoticeMessage {
- string WeChatId = 1;
- repeated ChatRoomMessage ChatRooms = 2;
- int32 Size = 3;
- int32 Count = 4;
- int32 Page = 5;
- int64 TaskId = 6;
- }
|