123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace app\dao\order;
- use app\dao\BaseDao;
- use app\model\order\StoreDeliveryOrder;
- class StoreDeliveryOrderDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return StoreDeliveryOrder::class;
- }
-
- public function getList(array $where, string $field = '*', int $page = 0, int $limit = 0, array $with = [])
- {
- return $this->search($where)->field($field)->when($with, function($query) use ($with) {
- $query->with($with);
- })->when($page && $limit, function($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('id desc')->select()->toArray();
- }
- }
|