UserGetByCodeResponse.php 522 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 返回结果
  4. * @author auto create
  5. */
  6. class UserGetByCodeResponse
  7. {
  8. /**
  9. * 用户统一id
  10. **/
  11. public $associated_unionid;
  12. /**
  13. * 设备id
  14. **/
  15. public $device_id;
  16. /**
  17. * 用户名字
  18. **/
  19. public $name;
  20. /**
  21. * 是否为管理员
  22. **/
  23. public $sys;
  24. /**
  25. * 员工级别。 1:主管理员 2:子管理员 100:老板 0:其他(如普通员工)
  26. **/
  27. public $sys_level;
  28. /**
  29. * 用户unionId
  30. **/
  31. public $unionid;
  32. /**
  33. * 用户id
  34. **/
  35. public $userid;
  36. }
  37. ?>