| 1 | <?php |
||
| 18 | abstract class BaseRepository extends Repository |
||
| 19 | { |
||
| 20 | use WithOnlyTrait, AutoWithTrait; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Application $app |
||
| 24 | */ |
||
| 25 | public function __construct(Application $app) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * whereIn 查询并按照数组内数据排序. |
||
| 36 | * |
||
| 37 | * @param array $data |
||
| 38 | * @param string $column |
||
| 39 | * |
||
| 40 | * @return $this |
||
| 41 | */ |
||
| 42 | public function whereInAndOrderBy(array $data, $column = 'id') |
||
| 50 | |||
| 51 | public function get() |
||
| 55 | } |
||
| 56 |