route.php 2.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. // you should use `$router`
  12. $router->group(function () use ($router){
  13. // station路由
  14. $router->resource('station', '\catchAdmin\stations\controller\Station');
  15. $router->post('kqstation/export', '\catchAdmin\stations\controller\Station@kqexport');//导出考勤基站
  16. $router->post('dwstation/export', '\catchAdmin\stations\controller\DwStation@export');//导出定位基站
  17. $router->post('socketstation/export', '\catchAdmin\stations\controller\IndoorStation@export');//导出定位基站
  18. // 定位基站
  19. $router->get('dwstation/getRangeData', '\catchAdmin\stations\controller\DwStation@rangeData');
  20. $router->put('dwstation/updateStationConfig/:id', '\catchAdmin\stations\controller\DwStation@updateStationConfig');
  21. $router->put('station/updateKqStationConfig/:id', '\catchAdmin\stations\controller\Station@updateKqStationConfig');
  22. $router->put('station/sendIpConfig/:id', '\catchAdmin\stations\controller\Station@sendIpConfig');
  23. $router->put('station/controlConfig/:id', '\catchAdmin\stations\controller\Station@controlConfig');
  24. $router->resource('dwstation', '\catchAdmin\stations\controller\DwStation');
  25. // 室内基站
  26. $router->put('indoorStation/updateLocation/:id', '\catchAdmin\stations\controller\IndoorStation@updateLocation');
  27. $router->resource('indoorStation', '\catchAdmin\stations\controller\IndoorStation');
  28. // stationHeartbeat路由
  29. $router->resource('stationHeartbeat', '\catchAdmin\stations\controller\StationHeartbeat');
  30. })->middleware('auth');