sm_map_scene_relation.php 607 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2022-11-09 21:25:25
  7. ////////////////////
  8. /**
  9. * Static Model map_scene_relation 场景出口对应关系
  10. */
  11. class sm_map_scene_relation
  12. {
  13. /**
  14. * @var Int32 场景ID
  15. */
  16. public $mapId;
  17. /**
  18. * @var Int32 出入口ID
  19. */
  20. public $pointId;
  21. /**
  22. * @var Int32 前往目标场景id
  23. */
  24. public $targetMapId;
  25. /**
  26. * @var Int32 前往目标场景的出入口id
  27. */
  28. public $targetPointId;
  29. }