MemberRightDao.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. namespace app\dao\user;
  12. use app\dao\BaseDao;
  13. use app\model\user\MemberRight;
  14. class MemberRightDao extends BaseDao
  15. {
  16. /** 设置模型
  17. * @return string
  18. */
  19. protected function setModel(): string
  20. {
  21. // TODO: Implement setModel() method.
  22. return MemberRight::class;
  23. }
  24. /**获取会员权益接口
  25. * @param array $where
  26. * @param int $page
  27. * @param int $limit
  28. * @param array $field
  29. * @return \think\Collection
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\DbException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. */
  34. public function getSearchList(array $where, int $page = 0, int $limit = 0, array $field = ['*'])
  35. {
  36. return $this->search($where)->order('sort desc,id desc')
  37. ->field($field)
  38. ->when($page && $limit, function($query) use($page, $limit){
  39. $query->page($page, $limit);
  40. })
  41. ->select()->toArray();
  42. }
  43. }