Detail.php 441 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 人员身份详情列表
  4. * @author auto create
  5. */
  6. class Detail
  7. {
  8. /**
  9. * 班级id
  10. **/
  11. public $class_id;
  12. /**
  13. * 身份属性
  14. **/
  15. public $feature;
  16. /**
  17. * 手机号
  18. **/
  19. public $mobile;
  20. /**
  21. * 人员名
  22. **/
  23. public $name;
  24. /**
  25. * 身份
  26. **/
  27. public $role;
  28. /**
  29. * unionid
  30. **/
  31. public $unionid;
  32. /**
  33. * 人员id
  34. **/
  35. public $userid;
  36. }
  37. ?>