golang-im聊天
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

sender.go 348 B

il y a 2 ans
123456789101112
  1. package model
  2. import "gim/pkg/pb"
  3. type Sender struct {
  4. SenderType pb.SenderType // 发送者类型,1:系统,2:用户,3:业务方
  5. SenderId int64 // 发送者id
  6. DeviceId int64 // 发送者设备id
  7. Nickname string // 昵称
  8. AvatarUrl string // 头像
  9. Extra string // 扩展字段
  10. }