WSnsMsgNotice.proto 618 B

1234567891011121314151617
  1. syntax = "proto3";
  2. package Im.Scrm.Ww.Proto; //命名空间约定
  3. import "WTransport.proto";
  4. option go_package = "./workphone/wecom";
  5. message SnsMsgNoticeMessage {
  6. int64 WxId = 1; //
  7. int32 Type = 2; // 类型:1 评论,2 点赞
  8. int64 SnsId = 3;
  9. int64 FriendId = 4; // 评论人的微信号
  10. string Content = 5; // 评论内容
  11. int64 CommentId = 6; // 微信本地数据库的id
  12. int64 ReplyCommentId = 7; // 回复的微信本地数据库的id
  13. int64 ReplyWxId = 8; // 评论对象的微信号
  14. int32 Time = 9; // 评论时间
  15. string PostId = 10; // sns postid
  16. }