123456789101112131415161718192021222324 |
- <?php
- namespace App\Repositories\Contracts;
- /**
- *
- * @author lilin
- *
- */
- interface BannerInterface
- {
- const TYPENAME = 'banner ';
-
- /**
- * 列表
- *
- * @param array $conditions 多个查询条件
- * @param array $fields 显示字段
- * @param string $sort 排序
- * @param int $page 页码
- * @param int $limit 显示条数
- */
- public function getList(array $conditions, array $fields, string $sort, int $page, int $limit);
- }
|