LiveGoodsDao.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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\LiveGoods;
  15. /**
  16. * Class LiveGoodsDao
  17. * @package app\dao\live
  18. */
  19. class LiveGoodsDao extends BaseDao
  20. {
  21. protected function setModel(): string
  22. {
  23. return LiveGoods::class;
  24. }
  25. /**
  26. * @param array $where
  27. * @param string $field
  28. * @param array $with
  29. * @param int $page
  30. * @param int $limit
  31. * @return array
  32. * @throws \ReflectionException
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function getList(array $where, string $field = '*', array $with = [], int $page, int $limit)
  38. {
  39. return $this->search($where)->field($field)->with($with)->page($page, $limit)->order('sort desc,add_time desc')->select()->toArray();
  40. }
  41. public function goodsStatusAll()
  42. {
  43. return $this->getModel()->where('goods_id', '>', 0)->whereIn('audit_status', [0, 1])->column('id,audit_status', 'goods_id');
  44. }
  45. /**
  46. * @param array $ids
  47. * @return \think\Collection
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. */
  52. public function goodsList(array $ids)
  53. {
  54. return $this->getModel()->whereIn('id', $ids)->where('is_del', 0)->where('audit_status', 2)->select()->toArray();
  55. }
  56. }