Application.php 509 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace addons\RfDemo\services;
  3. use common\components\Service;
  4. /**
  5. * Class Application
  6. *
  7. * @package addons\RfDemo\services
  8. * @property ConfigService $config 默认配置
  9. * @property CateService $cate 分类
  10. * @property CurdMapService $curdMap 地图范围
  11. */
  12. class Application extends Service
  13. {
  14. /**
  15. * @var array
  16. */
  17. public $childService = [
  18. 'config' => ConfigService::class,
  19. 'cate' => CateService::class,
  20. 'curdMap' => CurdMapService::class,
  21. ];
  22. }
粤ICP备19079148号