StoreCouponSendDao.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\common\dao\store\coupon;
  12. use app\common\dao\BaseDao;
  13. use app\common\model\BaseModel;
  14. use app\common\model\store\coupon\StoreCouponSend;
  15. class StoreCouponSendDao extends BaseDao
  16. {
  17. protected function getModel(): string
  18. {
  19. return StoreCouponSend::class;
  20. }
  21. public function search(array $where)
  22. {
  23. return StoreCouponSend::getDB()->alias('A')->leftJoin('StoreCoupon B', 'B.coupon_id = A.coupon_id')
  24. ->when(isset($where['coupon_name']) && $where['coupon_name'] !== '', function ($query) use ($where) {
  25. $query->whereLike('B.title', "%{$where['coupon_name']}%");
  26. })
  27. ->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) {
  28. getModelTime($query, $where['date'], 'A.create_time');
  29. })
  30. ->when(isset($where['coupon_type']) && $where['coupon_type'] !== '', function ($query) use ($where) {
  31. $query->where('B.type', $where['coupon_type']);
  32. })
  33. ->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) {
  34. $query->where('A.status', $where['status']);
  35. })
  36. ->when(isset($where['mer_id']) && $where['mer_id'] !== '', function ($query) use ($where) {
  37. $query->where('A.mer_id', $where['mer_id']);
  38. });
  39. }
  40. }