You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
461 B
27 lines
461 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Service\AdServiceInterface;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
|
|
/**
|
|
* 系统AD广告/宣传图控制器
|
|
* Class AdController
|
|
* @package App\Controller
|
|
*/
|
|
class AdController extends BaseController
|
|
{
|
|
/**
|
|
* @Inject
|
|
* @var AdServiceInterface
|
|
*/
|
|
protected $adService;
|
|
|
|
public function banners()
|
|
{
|
|
return $this->success($this->adService->banners());
|
|
}
|
|
}
|