StoreCouponSendDao.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 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. })->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) {
  27. getModelTime($query, $where['date'], 'A.create_time');
  28. })->when(isset($where['coupon_type']) && $where['coupon_type'] !== '', function ($query) use ($where) {
  29. $query->where('B.type', $where['coupon_type']);
  30. })->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) {
  31. $query->where('A.status', $where['status']);
  32. })->when(isset($where['mer_id']) && $where['mer_id'] !== '', function ($query) use ($where) {
  33. $query->where('A.mer_id', $where['mer_id']);
  34. });
  35. }
  36. }