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