123456789101112131415161718 |
- syntax = "proto3";
- package Jubo.JuLiao.IM.Wx.Proto;
- option go_package = "./workphone";
- message FriendDetectResultNoticeMessage {
- string WeChatId = 1;
- int64 TaskId = 2;
- int64 StartTime = 3;
- int64 EndTime = 4;
- bool IsFinished = 5;
- int32 Count = 6;
- int32 SkipCount = 7;
- int32 DelCount = 8;
- repeated string Zombies = 9;
- repeated string BlockedList = 10;
- repeated string BannedList = 11;
- repeated string CanceledList = 12;
- }
|