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.
|
- package model
-
- import "time"
-
- type Message struct {
- Id int64 // 自增主键
- UserId int64 // 所属类型id
- RequestId int64 // 请求id
- SenderType int32 // 发送者类型
- SenderId int64 // 发送者账户id
- ReceiverType int32 // 接收者账户id
- ReceiverId int64 // 接收者id,如果是单聊信息,则为user_id,如果是群组消息,则为group_id
- ToUserIds string // 需要@的用户id列表,多个用户用,隔开
- Type int // 消息类型
- Content []byte // 消息内容
- Seq int64 // 消息同步序列
- SendTime time.Time // 消息发送时间
- Status int32 // 创建时间
- }
|