26 lines
335 B
PHP
26 lines
335 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\Service\Admin\BaseService;
|
|
|
|
class CategoryService extends BaseService
|
|
{
|
|
public function handle()
|
|
{
|
|
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
|
|
}
|
|
} |