golang-im聊天
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 2 años
hace 2 años
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. }