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.
22 lines
479 B
22 lines
479 B
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
use App\Model\Ad;
|
|
|
|
class AdService implements AdServiceInterface
|
|
{
|
|
/**
|
|
* 跳转类型、跳转连接、标题、图片地址
|
|
*/
|
|
public function banners()
|
|
{
|
|
return Ad::query()->select(['id','title','logo','item','src','src2'])
|
|
->where([
|
|
'type' => Ad::TYPE_BANNER,
|
|
'status' => Ad::STATUS_YES
|
|
])
|
|
->orderBy('orderby', 'desc')
|
|
->get();
|
|
}
|
|
}
|