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.
|
- package model
-
- type User struct {
- Id int64 `json:"id"`
- PhoneNumber string `json:"phone_number"`
- Nickname string `json:"nickname"`
- AvatarUrl string `json:"avatar_url"`
- Sex int `json:"sex"`
- CreateTime string `json:"create_time"`
- UpdateTime string `json:"update_time"`
- IsAutoAddedFriends int `json:"is_auto_added_friends"`
- }
|