LiveAnchorDao.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\dao\activity\live;
  13. use app\dao\BaseDao;
  14. use app\model\activity\live\LiveAnchor;
  15. /**
  16. * Class LiveGoodsDao
  17. * @package app\dao\live
  18. */
  19. class LiveAnchorDao extends BaseDao
  20. {
  21. protected function setModel(): string
  22. {
  23. return LiveAnchor::class;
  24. }
  25. /**
  26. * @param array $where
  27. * @param string $field
  28. * @param int $page
  29. * @param int $limit
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function getList(array $where, string $field = '*', int $page, int $limit)
  36. {
  37. return $this->search($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
  38. $query->page($page, $limit);
  39. })->order('add_time desc')->select()->toArray();
  40. }
  41. }