haiq.php 341 B

123456789101112131415
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. 文件地址前缀:/api/thirdPart/haiq
  5. */
  6. Route::group(['prefix'=>'storage'],function(){
  7. Route::post('relocate', "StorageController@relocate");//移库
  8. });
  9. Route::group(['prefix'=>'pickStation'],function(){
  10. Route::post('processed', "PickStationController@processed");//移库
  11. });