haiq.php 479 B

1234567891011121314151617
  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('taskUpdate', "StorageController@taskUpdate");//移库
  9. Route::post('exception', "StorageController@exception");//移库
  10. });
  11. Route::group(['prefix'=>'pickStation'],function(){
  12. Route::post('processed', "PickStationController@processed");//移库
  13. });