OpenIndustryEmp.php 275 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 员工信息
  4. * @author auto create
  5. */
  6. class OpenIndustryEmp
  7. {
  8. /**
  9. * 员工特征
  10. **/
  11. public $feature;
  12. /**
  13. * 员工名字
  14. **/
  15. public $name;
  16. /**
  17. * 员工角色列表
  18. **/
  19. public $roles;
  20. /**
  21. * unionId
  22. **/
  23. public $unionid;
  24. }
  25. ?>