UseridVo.php 231 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 用户userid结果
  4. * @author auto create
  5. */
  6. class UseridVo
  7. {
  8. /**
  9. * 用户通讯录类型,0为内部,1为外部
  10. **/
  11. public $contact_type;
  12. /**
  13. * 用户在企业中userid
  14. **/
  15. public $userid;
  16. }
  17. ?>