蛋蛋星球-客户端
25개 이상의 토픽을 선택하실 수 없습니다. 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. }