UserOInfo.php 556 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Module\User\Unit;
  3. class UserOInfo
  4. {
  5. /**
  6. * 用户ID
  7. *
  8. * @var int
  9. */
  10. public int $user_id;
  11. public string|null $avatar;
  12. public int $status;
  13. public string|null $nick_name;
  14. public string|null $phone;
  15. public function toArray()
  16. {
  17. return [
  18. 'user_id' => $this->user_id,
  19. 'avatar' => $this->avatar,
  20. 'status' => $this->status,
  21. 'nick_name' => $this->nick_name,
  22. 'phone' => $this->phone,
  23. ];
  24. }
  25. }