MemberCardBatchDao.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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\MemberCardBatch;
  14. class MemberCardBatchDao extends BaseDao
  15. {
  16. /** 设置模型
  17. * @return string
  18. */
  19. protected function setModel(): string
  20. {
  21. // TODO: Implement setModel() method.
  22. return MemberCardBatch::class;
  23. }
  24. /**
  25. * 获取会员卡批次列表
  26. * @param array $where
  27. * @param int $page
  28. * @param int $limit
  29. * @param string $order
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function getList(array $where, int $page = 0, int $limit = 0, string $order = '')
  36. {
  37. return $this->search($where)
  38. ->order(($order ? $order . ' ,' : '') . 'sort desc,id desc')
  39. ->page($page, $limit)->select()->toArray();
  40. }
  41. }