feat : sts

This commit is contained in:
2025-04-14 17:46:06 +08:00
parent 217ed0c240
commit e996536bf5
10 changed files with 491 additions and 7 deletions

View File

@@ -0,0 +1,31 @@
<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Admin\Good;
use App\Model\Sku;
use App\Service\Admin\BaseService;
use Hyperf\Di\Annotation\Inject;
class FavorableService extends BaseService
{
/**
* @var Sku
*/
#[Inject]
protected Sku $skuModel;
public function handle()
{
//todo
$skuId = $this->request->input('sku_id');
return $this->return->success();
}
}