QueryHbDetailTaskResultNotice.proto 981 B

12345678910111213141516171819202122232425262728
  1. syntax = "proto3";
  2. package Jubo.JuLiao.IM.Wx.Proto; //命名空间约定
  3. option go_package = "./workphone";
  4. message HbRecordMessage {
  5. string UserName = 1; //
  6. int32 Amount = 2; //
  7. string Time = 3; //
  8. //string RecId = 4; //
  9. }
  10. message QueryHbDetailTaskResultNoticeMessage {
  11. string WeChatId = 1; // 所属微信号
  12. bool Success = 2;
  13. string ErrMsg = 3;
  14. string HbUrl = 4; //
  15. int32 TotalNum = 5; // 红包总个数
  16. int32 TotalAmount = 6; // 红包总金额
  17. int32 RecNum = 7; // 已收红包个数
  18. int32 RecAmount = 8; // 已收红包金额
  19. repeated HbRecordMessage Records = 9; // 收红包记录
  20. string Sender = 10; // 红包发送者username
  21. string Wishing = 11;
  22. int32 HbType = 12; // 红包类型 0 个人红包,1 群红包,...
  23. int32 HbKind = 13;
  24. int32 HbStatus = 14; // 红包状态 2 可抢红包, 3 自己抢完,4 不可抢 ,5 过期红包
  25. int32 RevStatus = 15; // 红包接收状态 2 已抢
  26. }