蛋蛋星球RabbitMq消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
410 B

  1. package model
  2. type User struct {
  3. Id int64 `json:"id"`
  4. PhoneNumber string `json:"phone_number"`
  5. Nickname string `json:"nickname"`
  6. AvatarUrl string `json:"avatar_url"`
  7. Sex int `json:"sex"`
  8. CreateTime string `json:"create_time"`
  9. UpdateTime string `json:"update_time"`
  10. IsAutoAddedFriends int `json:"is_auto_added_friends"`
  11. }