feat: 添加产品购买链接相关接口
This commit is contained in:
@@ -184,6 +184,24 @@ Route::group('v1', function () {
|
||||
Route::delete('delete/:id', 'ProductCategory/delete');
|
||||
});
|
||||
|
||||
// 产品购买链接
|
||||
Route::group('buypass', function () {
|
||||
// 购买链接平台列表
|
||||
Route::get('platforms', 'ProductPurchaseLink/platforms');
|
||||
|
||||
// 购买链接列表
|
||||
Route::get('index', 'ProductPurchaseLink/index');
|
||||
|
||||
// 购买链接导入
|
||||
Route::post('import', 'ProductPurchaseLink/import');
|
||||
|
||||
// 购买链接导出
|
||||
Route::get('export', 'ProductPurchaseLink/export');
|
||||
|
||||
// 购买链接更新
|
||||
Route::put('update/:id', 'ProductPurchaseLink/update');
|
||||
});
|
||||
|
||||
// 产品回收站
|
||||
Route::group('trash', function () {
|
||||
// 产品回收站列表
|
||||
|
||||
Reference in New Issue
Block a user