UserGetRequest.php 210 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 业务返回结果
  4. * @author auto create
  5. */
  6. class UserGetRequest
  7. {
  8. /**
  9. * 是否实名认证
  10. **/
  11. public $real_authed;
  12. /**
  13. * 用户id
  14. **/
  15. public $userid;
  16. }
  17. ?>