MemberShipDao.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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\MemberShip;
  14. class MemberShipDao extends BaseDao
  15. {
  16. /** 设置模型
  17. * @return string
  18. */
  19. protected function setModel(): string
  20. {
  21. // TODO: Implement setModel() method.
  22. return MemberShip::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. ->page($page, $limit)
  39. ->select();
  40. }
  41. /**获取会员类型api接口
  42. * @return mixed
  43. */
  44. public function getApiList(array $where)
  45. {
  46. return $this->search()->where($where)->order('sort desc,id DESC')->select()->toArray();
  47. }
  48. }