OpenPatriarchSelectDto.php 381 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 家长列表
  4. * @author auto create
  5. */
  6. class OpenPatriarchSelectDto
  7. {
  8. /**
  9. * 头像
  10. **/
  11. public $avatar;
  12. /**
  13. * 是否激活钉钉
  14. **/
  15. public $is_active;
  16. /**
  17. * 家长姓名
  18. **/
  19. public $name;
  20. /**
  21. * 关系key
  22. **/
  23. public $relation;
  24. /**
  25. * 关系名称
  26. **/
  27. public $relation_name;
  28. /**
  29. * 家长id
  30. **/
  31. public $userid;
  32. }
  33. ?>