feat: 添加产品购买链接添加接口

This commit is contained in:
2025-03-26 18:08:26 +08:00
committed by jsasg
parent 965d4af7f2
commit d1d9661d43
3 changed files with 65 additions and 12 deletions

View File

@@ -323,6 +323,9 @@ Route::group('v1', function () {
// 购买链接导出
Route::get('export', 'ProductPurchaseLink/export');
// 购买链接添加
Route::post('save', 'ProductPurchaseLink/save');
// 购买链接更新
Route::put('update/:id', 'ProductPurchaseLink/update');
});