UserProfileVo.php 199 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 审批人列表
  4. * @author auto create
  5. */
  6. class UserProfileVo
  7. {
  8. /**
  9. * 审批人姓名
  10. **/
  11. public $name;
  12. /**
  13. * 审批人id
  14. **/
  15. public $userid;
  16. }
  17. ?>