MemberCardDao.php 1.7 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\MemberCard;
  14. class MemberCardDao extends BaseDao
  15. {
  16. /** 设置模型
  17. * @return string
  18. */
  19. protected function setModel(): string
  20. {
  21. // TODO: Implement setModel() method.
  22. return MemberCard::class;
  23. }
  24. public function getSearchList(array $where, int $page = 0, int $limit = 0, array $field = ['*'])
  25. {
  26. return $this->search($where)->order('use_time desc,id desc')
  27. ->field($field)
  28. ->when($page > 0 || $limit > 0, function ($query) use ($page, $limit) {
  29. $query->page($page, $limit);
  30. })
  31. ->select();
  32. }
  33. /**获取当条会员卡信息
  34. * @param array $where
  35. * @return array|\think\Model|null
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function getOneByWhere(array $where)
  41. {
  42. return $this->getModel()->where($where)->find();
  43. }
  44. }