123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2019/7/23
- * Time: 14:47
- */
- namespace App\Modules\Book\Services;
- use App\Modules\BaseService;
- use App\Modules\Book\Models\RecoBanner;
- /**
- * @method \Illuminate\Support\Collection getByTypeStatic(array $reco_type, int $type)
- */
- class RecoBannerService
- {
- use BaseService;
- public function getByType(array $reco_type, int $type)
- {
- return RecoBanner::whereIn('reco_type', $reco_type)->where('start_time', '<=', date('Y-m-d H:i:s'))
- ->where('end_time', '>=', date('Y-m-d H:i:s'))
- ->where('type', $type)
- ->select('redirect_url', 'banner_url')
- ->get();
- }
- }
|