LuckLotteryRecordDao.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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\lottery;
  13. use app\dao\BaseDao;
  14. use app\model\activity\lottery\LuckLotteryRecord;
  15. /**
  16. * 中奖记录
  17. * Class LuckLotteryRecordDao
  18. * @package app\dao\activity\lottery
  19. */
  20. class LuckLotteryRecordDao extends BaseDao
  21. {
  22. /**
  23. * 设置模型
  24. * @return string
  25. */
  26. protected function setModel(): string
  27. {
  28. return LuckLotteryRecord::class;
  29. }
  30. /**
  31. * 获取列表
  32. * @param array $where
  33. * @param string $field
  34. * @param array $with
  35. * @param int $page
  36. * @param int $limit
  37. * @return array
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\DbException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. */
  42. public function getList(array $where, $field = '*', array $with = [], int $page = 0, int $limit = 10)
  43. {
  44. return $this->search($where)->when($with, function ($query) use ($with) {
  45. $query->with($with);
  46. })->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
  47. $query->page($page, $limit);
  48. })->order('add_time desc')->select()->toArray();
  49. }
  50. /**
  51. * @param array $where
  52. * @param string $group
  53. * @return int
  54. */
  55. public function getCount(array $where, string $group = '')
  56. {
  57. return parent::search($where)->when(isset($where['add_time']) && $where['add_time'], function ($query) use ($where) {
  58. $query->where('add_time','>=', $where['add_time']);
  59. })->when($group, function ($query) use ($group) {
  60. $query->group($group);
  61. })->count();
  62. }
  63. }