golang-im聊天
Você não pode selecionar mais de 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.
 
 
 
 

16 linhas
910 B

  1. package md
  2. type PushParams struct {
  3. MasterId string `json:"master_id"` //站长id
  4. Uid string `json:"uid"` //用户id
  5. PushAlia string `json:"push_alia"` //推送别名
  6. Title string `json:"title"` //标题
  7. Content string `json:"content"` //内容
  8. PushType string `json:"push_type"` //推送类型`zhi_ying_gim`
  9. MessageType string `json:"message_type"` //消息类型`UNKNOWN、TEXT、FACE、VOICE、IMAGE、FILE、LOCATION、COMMAND、CUSTOM`
  10. SendUserNickname string `json:"send_user_nickname"` //消费发送者-会员昵称
  11. SendUserAvatarUrl string `json:"send_user_avatar_url"` //消费发送者-会员头像
  12. Memo string `json:"reason"` //备注
  13. Times string `json:"times"` //时间
  14. }