Entity.php 305 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 人员列表
  4. * @author auto create
  5. */
  6. class Entity
  7. {
  8. /**
  9. * 实体id,表示员工id/部门id
  10. **/
  11. public $id;
  12. /**
  13. * 实体名,表示员工名称/部门名称
  14. **/
  15. public $name;
  16. /**
  17. * 1:员工,2:商旅内部部门,3:三方部门
  18. **/
  19. public $type;
  20. }
  21. ?>