蛋蛋星球-客户端
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.
 
 
 
 
 

14 lines
201 B

  1. package model
  2. // Friend 好友
  3. type Friend struct {
  4. Id int64
  5. UserId int64
  6. FriendId int64
  7. Remarks string
  8. Extra string
  9. Status int
  10. CreateTime string
  11. UpdateTime string
  12. }