fix: 同步产品目录产品分类及产品

This commit is contained in:
2025-07-09 11:32:51 +08:00
parent ca6296a276
commit 91a38dee28
2 changed files with 10 additions and 4 deletions

View File

@@ -616,6 +616,12 @@ Route::group('v1', function () {
});
})->prefix('v1.');
// 接收产品目录同步数据
Route::group('receive_sync', function () {
Route::post('category', 'ReceiveProductSync/category');
Route::post('product', 'ReceiveProductSync/product');
});
Route::miss(function() {
return '404 Not Found!';
});