golang-im聊天
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

13 linhas
348 B

  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. }