LiveAnchorDao.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 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. * 主播
  17. * Class LiveAnchorDao
  18. * @package app\dao\activity\live
  19. */
  20. class LiveAnchorDao extends BaseDao
  21. {
  22. protected function setModel(): string
  23. {
  24. return LiveAnchor::class;
  25. }
  26. /**
  27. * @param array $where
  28. * @param string $field
  29. * @param int $page
  30. * @param int $limit
  31. * @return array
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\DbException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. */
  36. public function getList(array $where, string $field = '*', int $page = 0, int $limit = 0)
  37. {
  38. return $this->search($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
  39. $query->page($page, $limit);
  40. })->order('add_time desc')->select()->toArray();
  41. }
  42. }