syntax = "proto3";
package Jubo.JuLiao.IM.Wx.Proto; //命名空间约定
option go_package = "./workphone";

message CircleCommentReplyTaskMessage {
    string WeChatId = 1; // 所属微信
    int64 CircleId = 2; // 所属朋友圈
    string ToWeChatId = 3; // 回复的好友
    string Content = 4;  // 回复的内容
    int64 ReplyCommentId = 5; // 回复的评论id
    int64 TaskId = 6; // 本地的评论表数据id (重发需要传递)
    bool IsResend = 7; // 是否是重发 (手机端忽略)
}