12345678910111213141516171819202122232425 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- enum CDNFileType {
- NoteMsg_Picture = 0;
- NoteMsg_Thumb = 1;
- NoteMsg_Video = 2;
- NoteMsg_File = 3;
- ChatMsg_Picture = 4;
- ChatMsg_Thumb = 5;
- ChatMsg_Video = 6;
- ChatMsg_File = 7;
- ChatMsg_Emoji =8;
- }
- message CDNDownloadFileTaskMessage {
- string WeChatId = 1;
- string CdnUrl = 2;
- string CdnKey = 3;
- CDNFileType FileType = 4;
- string FileId = 5;
- string FileFmt = 6;
- int32 FileSize = 7;
- int64 MsgSvrId = 8;
- }
|