| 1234567891011121314151617 |
- <?php
- use Illuminate\Support\Facades\Route;
- /*
- 文件地址前缀:/api/thirdPart/haiq
- */
- Route::group(['prefix'=>'storage'],function(){
- Route::post('moveBin', "StorageController@moveBin");//移库
- Route::post('taskUpdate', "StorageController@taskUpdate");//移库
- Route::post('exception', "StorageController@exception");//移库
- });
- Route::group(['prefix'=>'pickStation'],function(){
- Route::post('processed', "PickStationController@processed");//移库
- });
|