golang-im聊天
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

2 yıl önce
2 yıl önce
123456789101112131415
  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:"memo"` //备注
  13. Times string `json:"times"` //时间
  14. }