蛋蛋星球RabbitMq消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
714 B

  1. package model
  2. import "time"
  3. type Message struct {
  4. Id int64 // 自增主键
  5. UserId int64 // 所属类型id
  6. RequestId int64 // 请求id
  7. SenderType int32 // 发送者类型
  8. SenderId int64 // 发送者账户id
  9. ReceiverType int32 // 接收者账户id
  10. ReceiverId int64 // 接收者id,如果是单聊信息,则为user_id,如果是群组消息,则为group_id
  11. ToUserIds string // 需要@的用户id列表,多个用户用,隔开
  12. Type int // 消息类型
  13. Content []byte // 消息内容
  14. Seq int64 // 消息同步序列
  15. SendTime time.Time // 消息发送时间
  16. Status int32 // 创建时间
  17. }