Files
hyperf_service/app/Service/Admin/System/SiteService.php
2024-11-08 16:27:25 +08:00

41 lines
615 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Admin\System;
use App\Service\Admin\BaseService;
class SiteService extends BaseService
{
public function handle()
{
return $this->return->success();
}
public function add()
{
return $this->return->success();
}
public function edit()
{
return $this->return->success();
}
public function del()
{
return $this->return->success();
}
public function info()
{
}
}