123456789101112131415161718192021 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- message CallLogMessage {
- int32 Id = 1;
- string Number = 2;
- int32 Type = 3;
- int64 Date = 4;
- int32 Duration = 5;
- string Record = 6;
- int32 SimId = 7;
- int32 BlockType = 8;
- }
- message CallLogPushNoticeMessage {
- string WeChatId = 1;
- string IMEI = 2;
- CallLogMessage Messages = 3;
- }
|