golang-im聊天
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

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