haiq.php 924 B

12345678910111213141516171819202122232425
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. 文件地址前缀:/api/thirdPart/haiq
  5. */
  6. Route::group(['prefix'=>'storage'],function(){
  7. Route::post('moveBin', "StorageController@moveBin");//出库
  8. Route::post('moveBin2', "StorageController@moveBin2");//出库
  9. Route::post('moveBinIn', "StorageController@moveBinIn");//移库
  10. Route::post('moveBinM', "StorageController@moveBinM");//移库
  11. Route::post('lightOn', "StorageController@lightOn");//移库
  12. Route::post('lightOff', "StorageController@lightOff");//移库
  13. Route::post('taskUpdate', "StorageController@taskUpdate");//移库
  14. Route::post('exception', "StorageController@exception");//移库
  15. });
  16. Route::group(['prefix'=>'pickStation'],function(){
  17. Route::post('processed', "PickStationController@processed");//移库
  18. });
  19. Route::group(['prefix'=>'light'],function(){
  20. Route::post('update', "LightController@update");//移库
  21. });