CouponFilter.php 462 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. *
  4. *
  5. * @category xxx
  6. * @package PSR
  7. * @subpackage Documentation\API
  8. * @author xxx <xxx@xxx.com>
  9. * @license GPL https://xxx.com
  10. * @link https://xxx.com
  11. * @ctime: 2020/4/2 15:45
  12. */
  13. namespace App\Filters;
  14. class CouponFilter extends Filter
  15. {
  16. protected $simpleFilters = [
  17. 'area_id',
  18. 'is_quota',
  19. 'valid_type',
  20. 'status',
  21. 'title'=>['like','%?%'],
  22. 'merchant_id',
  23. ];
  24. }