CircleCommentReplyTaskResultNotice.proto 656 B

12345678910111213141516
  1. syntax = "proto3";
  2. package Jubo.JuLiao.IM.Wx.Proto; //命名空间约定
  3. option go_package = "./workphone";
  4. import "TransportMessage.proto";
  5. message CircleCommentReplyTaskResultNoticeMessage {
  6. bool Success = 1; // 是否成功
  7. EnumErrorCode Code = 2; // 错误码 Success = true 忽略
  8. string ErrMsg = 3;// 错误内容描述 Success = true 忽略
  9. int64 CommentId = 4; // 聊天Id
  10. int64 ReplyCommentId = 5; // 回复的评论id
  11. int64 TaskId = 6; // 请求中传递过去的jkt本地的表主键id
  12. int64 PusblishTime = 7; // 发布时间
  13. int64 CircleId = 8; // 朋友圈id
  14. string WeChatId = 9; // 商家所属微信号
  15. }