GetFansListResultBean.php 923 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace App\Http\Bean\Controller\User;
  3. /**
  4. * @SWG\Definition(
  5. * )
  6. */
  7. class GetFansListResultBean
  8. {
  9. /**
  10. * @SWG\Property(
  11. * description="总数量"
  12. * )
  13. * @var string
  14. */
  15. public $total;
  16. /**
  17. * @SWG\Property(
  18. * description="数据",
  19. * @SWG\Items(
  20. * @SWG\Property(
  21. * property="user_head_img_url",
  22. * type="string",
  23. * description="用户头像"
  24. * ),
  25. * @SWG\Property(
  26. * property="user_nickname",
  27. * type="string",
  28. * description="用户昵称"
  29. * ),
  30. * @SWG\Property(
  31. * property="created_at",
  32. * type="string",
  33. * description="注册时间"
  34. * )
  35. * )
  36. * )
  37. * @var array
  38. */
  39. private $list;
  40. }