31 lines
529 B
PHP
31 lines
529 B
PHP
<?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();
|
|
}
|
|
} |